HomeSort by relevance Sort by last modified time
    Searched defs:byte (Results 101 - 119 of 119) sorted by null

1 2 3 45

  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
motion_est.cpp 746 uint8 *ptr, byte; local
764 byte = ptr[4];
765 word |= (byte << 8);
766 byte = ptr[8];
767 word |= (byte << 16);
768 byte = ptr[12];
769 word |= (byte << 24);
773 byte = ptr[4];
774 word |= (byte << 8);
775 byte = ptr[8]
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
motion_est.cpp 678 UChar *ptr, byte; local
697 byte = ptr[4];
698 word |= (byte << 8);
699 byte = ptr[8];
700 word |= (byte << 16);
701 byte = ptr[12];
702 word |= (byte << 24);
706 byte = ptr[4];
707 word |= (byte << 8);
708 byte = ptr[8]
    [all...]
  /external/icu4c/test/intltest/
wbnf.cpp 49 typedef char byte; typedef in class:Buffer_byte
50 byte * start;
51 byte * current;
52 int buffer_size; // size unit is byte
54 inline int content_size(){return current - start;} // size unit is byte
57 inline void expand(int add_size = 100){ // size unit is byte
61 start = (byte *) realloc(start, new_size); // may change the value of start
90 inline void append(const void * c, int size){ // size unit is byte
96 byte * buffer(){
    [all...]
  /external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp 378 unsigned char byte; local
382 byte = *p++;
383 result |= (byte & 0x7f) << shift;
386 while (byte & 0x80);
402 unsigned char byte; local
406 byte = *p++;
407 result |= (byte & 0x7f) << shift;
410 while (byte & 0x80);
414 if ((byte & 0x40) && (shift < (sizeof(result) << 3))) {
    [all...]
  /external/llvm/lib/Target/ARM/Disassembler/
ARMDisassembler.cpp 3381 unsigned byte = fieldFromInstruction32(Val, 8, 2); local
    [all...]
  /external/skia/src/ports/
SkFontHost_FreeType.cpp 1405 uint8_t byte = 0; local
    [all...]
SkFontHost_win.cpp 233 SkAutoTDeleteArray<BYTE> glyphSetBuffer(new BYTE[glyphSetBufferSize]);
463 static BYTE compute_quality(const SkScalerContext::Rec& rec) {
787 unsigned byte = 0; local
788 byte |= (src[0] ^ xorMask) & (1 << 7);
789 byte |= (src[1] ^ xorMask) & (1 << 6);
790 byte |= (src[2] ^ xorMask) & (1 << 5);
791 byte |= (src[3] ^ xorMask) & (1 << 4);
792 byte |= (src[4] ^ xorMask) & (1 << 3);
793 byte |= (src[5] ^ xorMask) & (1 << 2)
801 unsigned byte = 0; local
    [all...]
  /libcore/luni/src/main/native/
libcore_io_Posix.cpp 595 // Convert each IP address into a Java byte array.
1061 u_char byte = value; local
    [all...]
  /system/security/keystore/
keystore.cpp 159 * into two bytes. The first byte is one of [+-.] which represents the first
160 * two bits of the character. The second byte encodes the rest of the bits into
259 * the second is the blob's type, and the third byte is reserved. Fields other
286 int32_t length; // in network byte order when encrypted
806 * Takes a blob that is an PEM-encoded RSA key as a byte array and
853 * where code is one byte long and lengths are unsigned 16-bit integers in
884 uint8_t byte; local
885 return recv(sock, &byte, 1, 0) == 0;
    [all...]
  /external/elfutils/libcpu/
i386_parse.c 204 /* The byte encoding. */
670 "masks", "mask", "instrs", "instr", "bitfieldopt", "bytes", "byte",
1146 including the terminating null byte. If YYRESULT is null, do not
2878 uint8_t byte = 0; local
    [all...]
  /external/tcpdump/
decnet.h 25 typedef u_int8_t byte[1]; /* single byte field */ typedef
28 * the keyword 'byte' generates conflicts in Windows
30 typedef unsigned char Byte[1]; /* single byte field */
31 #define byte Byte macro
33 typedef u_int8_t word[2]; /* 2 byte field */
66 byte sh_flags; /* route flags */
69 byte sh_visits; /* visit count *
    [all...]
  /external/v8/src/arm/
simulator-arm.cc 286 reinterpret_cast<byte*>(sim_->get_pc()));
432 byte* prev = NULL;
433 byte* cur = NULL;
434 byte* end = NULL;
437 cur = reinterpret_cast<byte*>(sim_->get_pc());
445 cur = reinterpret_cast<byte*>(value);
453 cur = reinterpret_cast<byte*>(sim_->get_pc());
462 cur = reinterpret_cast<byte*>(value1);
2660 uint8_t byte = ReadB(addr); local
2663 uint8_t byte = get_register(rd); local
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
readdwarf3.c 277 UChar byte; local
279 byte = get_UChar( c );
280 result = (ULong)(byte & 0x7f);
281 if (LIKELY(!(byte & 0x80))) return result;
285 byte = get_UChar( c );
286 result |= ((ULong)(byte & 0x7f)) << shift;
288 } while (byte & 0x80);
294 UChar byte; local
296 byte = get_UChar(c);
297 result |= ((ULong)(byte & 0x7f)) << shift
620 UChar byte = get_UChar( &loc ); local
    [all...]
readdwarf.c 215 UChar byte; local
221 byte = * data ++;
224 result |= ((ULong)(byte & 0x7f)) << shift;
229 while (byte & 0x80);
234 if (sign && (shift < 64) && (byte & 0x40))
    [all...]
  /external/chromium/third_party/libevent/
evdns.c 2349 u8 byte = in->s6_addr[i]; local
    [all...]
  /external/v8/src/
gdb-jit.cc 63 buffer_(reinterpret_cast<byte*>(malloc(capacity_))) {
125 buffer_ = reinterpret_cast<byte*>(realloc(buffer_, capacity_));
131 byte* buffer() { return buffer_; }
143 uint8_t byte = value & 0x7F; local
145 if (value != 0) byte |= 0x80;
146 Write<uint8_t>(byte);
153 int8_t byte = value & 0x7F; local
154 bool byte_sign = byte & 0x40;
160 byte |= 0x80;
163 Write<int8_t>(byte);
    [all...]
mark-compact.cc 3648 int byte = (mark_bits & 0xff); local
    [all...]
  /external/clang/lib/CodeGen/
CGObjCMac.cpp 742 // Allow sorting based on byte pos.
4069 unsigned char byte; local
    [all...]
  /external/valgrind/main/VEX/priv/
guest_s390_toIR.c 912 /* Return the guest state offset of byte #6 of a gpr register. */
919 /* Write byte #6 of a gpr to the guest state. */
928 /* Read byte #6 of a gpr register. */
935 /* Return the guest state offset of byte #3 of a gpr register. */
942 /* Write byte #3 of a gpr to the guest state. */
951 /* Read byte #3 of a gpr register. */
958 /* Return the guest state offset of byte #0 of a gpr register. */
965 /* Write byte #0 of a gpr to the guest state. */
974 /* Read byte #0 of a gpr register. */
1027 /* Return the guest state offset of byte #7 of a gpr register. *
9016 IRTemp byte = newTemp(Ity_I8); local
9550 IRTemp byte = newTemp(Ity_I8); local
13267 UChar byte; local
    [all...]

Completed in 591 milliseconds

1 2 3 45