Change log:95336cb92b..191d55580eFull diff:95336cb92b..191d55580eRoll chromium third_party 4e16929f46..3a8f2a9e1e Change log:4e16929f46..3a8f2a9e1eChanged dependencies: * src/tools:c44a3f5eca..f524a53b81DEPS diff:95336cb92b..191d55580e/DEPS No update to Clang. TBR=titovartem@google.com, BUG=None CQ_INCLUDE_TRYBOTS=master.internal.tryserver.corp.webrtc:linux_internal Change-Id: Ic9c4a62b050383646e9fcf5cc07a5653c14ac06e Reviewed-on: https://webrtc-review.googlesource.com/76120 Reviewed-by: Patrik Höglund <phoglund@webrtc.org> Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Reviewed-by: Artem Titov <titovartem@webrtc.org> Commit-Queue: Artem Titov <titovartem@webrtc.org> Cr-Commit-Position: refs/heads/master@{#23205}
113 lines
2.4 KiB
C++
113 lines
2.4 KiB
C++
// Copyright 2015 The Bazel Authors. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
// common.h -- common definitions.
|
|
//
|
|
|
|
#ifndef INCLUDED_DEVTOOLS_IJAR_COMMON_H
|
|
#define INCLUDED_DEVTOOLS_IJAR_COMMON_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
|
|
namespace devtools_ijar {
|
|
|
|
typedef unsigned long long u8;
|
|
typedef uint32_t u4;
|
|
typedef uint16_t u2;
|
|
typedef uint8_t u1;
|
|
|
|
// be = big endian, le = little endian
|
|
|
|
inline u1 get_u1(const u1 *&p) {
|
|
return *p++;
|
|
}
|
|
|
|
inline u2 get_u2be(const u1 *&p) {
|
|
u4 x = (p[0] << 8) | p[1];
|
|
p += 2;
|
|
return x;
|
|
}
|
|
|
|
inline u2 get_u2le(const u1 *&p) {
|
|
u4 x = (p[1] << 8) | p[0];
|
|
p += 2;
|
|
return x;
|
|
}
|
|
|
|
inline u4 get_u4be(const u1 *&p) {
|
|
u4 x = (p[0] << 24) | (p[1] << 16) | (p[2] << 8) | p[3];
|
|
p += 4;
|
|
return x;
|
|
}
|
|
|
|
inline u4 get_u4le(const u1 *&p) {
|
|
u4 x = (p[3] << 24) | (p[2] << 16) | (p[1] << 8) | p[0];
|
|
p += 4;
|
|
return x;
|
|
}
|
|
|
|
inline u8 get_u8le(const u1 *&p) {
|
|
u4 lo = get_u4le(p);
|
|
u4 hi = get_u4le(p);
|
|
u8 x = ((u8)hi << 32) | lo;
|
|
return x;
|
|
}
|
|
|
|
inline void put_u1(u1 *&p, u1 x) {
|
|
*p++ = x;
|
|
}
|
|
|
|
inline void put_u2be(u1 *&p, u2 x) {
|
|
*p++ = x >> 8;
|
|
*p++ = x & 0xff;
|
|
}
|
|
|
|
inline void put_u2le(u1 *&p, u2 x) {
|
|
*p++ = x & 0xff;
|
|
*p++ = x >> 8;;
|
|
}
|
|
|
|
inline void put_u4be(u1 *&p, u4 x) {
|
|
*p++ = x >> 24;
|
|
*p++ = (x >> 16) & 0xff;
|
|
*p++ = (x >> 8) & 0xff;
|
|
*p++ = x & 0xff;
|
|
}
|
|
|
|
inline void put_u4le(u1 *&p, u4 x) {
|
|
*p++ = x & 0xff;
|
|
*p++ = (x >> 8) & 0xff;
|
|
*p++ = (x >> 16) & 0xff;
|
|
*p++ = x >> 24;
|
|
}
|
|
|
|
inline void put_u8le(u1 *&p, u8 x) {
|
|
put_u4le(p, x & 0xffffffff);
|
|
put_u4le(p, (x >> 32) & 0xffffffff);
|
|
}
|
|
|
|
// Copy n bytes from src to p, and advance p.
|
|
inline void put_n(u1 *&p, const u1 *src, size_t n) {
|
|
memcpy(p, src, n);
|
|
p += n;
|
|
}
|
|
|
|
extern bool verbose;
|
|
|
|
} // namespace devtools_ijar
|
|
|
|
#endif // INCLUDED_DEVTOOLS_IJAR_COMMON_H
|