HomeSort by relevance Sort by last modified time
    Searched defs:byte (Results 201 - 225 of 320) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/libunwind_llvm/src/
Unwind-EHABI.cpp 34 // signinficant byte.
222 *off = 1; // First byte is size data.
255 uint8_t byte = getByte(data, offset++); local
256 if ((byte & 0x80) == 0) {
259 if (byte & 0x40)
260 sp -= (((uint32_t)byte & 0x3f) << 2) + 4;
262 sp += ((uint32_t)byte << 2) + 4;
265 switch (byte & 0xf0) {
270 (((uint32_t)byte & 0x0f) << 12) |
280 uint8_t reg = byte & 0x0f
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_temporal_filter.c 105 int byte = 0; local
129 int diff = frame1[byte + idy * (int)stride + idx] -
158 byte++;
161 byte += stride - block_width;
174 int byte = 0; local
190 int diff = frame1[byte + idy * (int)stride + idx] -
217 byte++;
220 byte += stride - block_width;
293 int byte; local
461 byte = mb_y_offset
    [all...]
  /external/llvm/lib/Target/X86/Disassembler/
X86DisassemblerDecoder.cpp 25 /// Specifies whether a ModR/M byte is needed and (if so) which
26 /// instruction each possible value of the ModR/M byte corresponds to. Once
70 * the ModR/M byte is required to decode a particular instruction.
75 * @param opcode - The last byte of the instruction's opcode, not counting
77 * @return - true if the ModR/M byte is required, false otherwise.
119 * @param modRM - The ModR/M byte if required, or any value if not.
189 * byte from the instruction's memory and advance the cursor.
193 * @param byte - A pointer to a pre-allocated memory buffer to be populated
197 static int consumeByte(struct InternalInstruction* insn, uint8_t* byte) {
198 int ret = insn->reader(insn->readerArg, byte, insn->readerCursor)
327 uint8_t byte = 0; local
    [all...]
  /external/ltp/testcases/lib/
tst_net_vars.c 476 unsigned char byte; local
490 byte = ip & 0xff;
491 sprintf(p_buf, "%d", byte);
493 byte = (ip >> i) & 0xff;
494 sprintf(p_buf, ".%d", byte);
  /external/nanopb-c/
pb_decode.c 128 /* Read a single byte from input stream. buf may not be NULL.
170 uint8_t byte; local
173 if (!pb_readbyte(stream, &byte))
176 if ((byte & 0x80) == 0)
178 /* Quick case, 1 byte value */
179 result = byte;
185 result = byte & 0x7F;
192 if (!pb_readbyte(stream, &byte))
195 result |= (uint32_t)(byte & 0x7F) << bitpos;
197 } while (byte & 0x80)
206 uint8_t byte; local
228 uint8_t byte; local
    [all...]
  /external/python/cpython2/Mac/Modules/cg/
CFMLateImport.c 250 UInt8 byte; local
258 byte = *bytePtr++;
259 count = (count << kPEFPkDataVCountShift) | (byte & kPEFPkDataVCountMask);
260 } while ((byte & kPEFPkDataVCountEndMask) != 0);
669 // Initialise thisImportLibrary to point to the byte after the
    [all...]
  /external/python/cpython3/Modules/
signalmodule.c 241 unsigned char byte; local
254 byte = (unsigned char)sig_num;
258 rc = send(fd, &byte, 1, 0);
272 byte = (unsigned char)sig_num;
276 rc = _Py_write_noraise(fd, &byte, 1);
    [all...]
  /external/skia/src/ports/
SkScalerContext_win_dw.cpp 676 unsigned byte = 0; local
677 byte |= src[0] & (1 << 7);
678 byte |= src[1] & (1 << 6);
679 byte |= src[2] & (1 << 5);
680 byte |= src[3] & (1 << 4);
681 byte |= src[4] & (1 << 3);
682 byte |= src[5] & (1 << 2);
683 byte |= src[6] & (1 << 1);
684 byte |= src[7] & (1 << 0);
685 dst[i] = byte;
690 unsigned byte = 0; local
    [all...]
  /external/skqp/src/ports/
SkScalerContext_win_dw.cpp 676 unsigned byte = 0; local
677 byte |= src[0] & (1 << 7);
678 byte |= src[1] & (1 << 6);
679 byte |= src[2] & (1 << 5);
680 byte |= src[3] & (1 << 4);
681 byte |= src[4] & (1 << 3);
682 byte |= src[5] & (1 << 2);
683 byte |= src[6] & (1 << 1);
684 byte |= src[7] & (1 << 0);
685 dst[i] = byte;
690 unsigned byte = 0; local
    [all...]
  /external/swiftshader/src/Renderer/
Surface.hpp 389 typedef unsigned char byte; typedef in class:sw::Surface
416 byte a0;
417 byte a1;
434 byte y0;
435 byte y1;
445 byte x0;
446 byte x1;
459 byte r0;
460 byte r1;
  /external/syslinux/core/fs/ntfs/
ntfs.c 340 uint8_t *buf; /* Pointer to the zero-terminated byte stream */
341 uint8_t count; /* The count byte */
345 uint8_t *byte; local
372 byte = (uint8_t *)buf + v;
377 res = (res << byte_shift) | *byte--;
381 byte = (uint8_t *)buf + v + l;
386 if (*byte & 0x80)
390 res = (res << byte_shift) | *byte--;
    [all...]
  /external/v8/src/wasm/
wasm-js.cc 27 typedef uint8_t byte; typedef
126 const byte* start = nullptr;
134 start = reinterpret_cast<const byte*>(contents.Data());
144 reinterpret_cast<const byte*>(contents.Data()) + array->ByteOffset();
    [all...]
  /external/valgrind/coregrind/m_debuginfo/
readexidx.c 309 // |extra| has no meaning here; instead that byte is an unwind-info byte
503 UChar byte, shift = 0; local
505 GET_BUF_U8(byte);
506 offset |= (byte & 0x7f) << shift;
508 } while ((byte & 0x80) && buf < end);
    [all...]
  /hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/inc/
mp4_utils.h 41 typedef unsigned char byte; /* Unsigned 8 bit value type. */ typedef
160 byte *m_dataBeginPtr;
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/inc/
mp4_utils.h 41 typedef unsigned char byte; /* Unsigned 8 bit value type. */ typedef
157 byte *m_dataBeginPtr;
  /hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/inc/
mp4_utils.h 41 typedef unsigned char byte; /* Unsigned 8 bit value type. */ typedef
157 byte *m_dataBeginPtr;
  /hardware/qcom/media/msm8998/mm-video-v4l2/vidc/vdec/inc/
mp4_utils.h 41 typedef unsigned char byte; /* Unsigned 8 bit value type. */ typedef
157 byte *m_dataBeginPtr;
  /toolchain/binutils/binutils-2.27/binutils/
unwind-ia64.c 548 unw_word byte, result = 0; local
553 byte = *bp++;
554 result |= (byte & 0x7f) << shift;
556 if ((byte & 0x80) == 0)
  /toolchain/binutils/binutils-2.27/opcodes/
opc2c.c 45 /* Points to last byte. */
60 /* Points to last byte again. */
80 int byte:8; member in struct:__anon5099
152 next_varybits (int bits, opcode * op, int byte)
154 int mask = op->b[byte].decodable_mask;
174 valid_varybits (int bits, opcode * op, int byte)
187 if (byte != op->vary[vn].byte)
277 int byte = i >> 3; local
302 level, "", name, byte, shift, mask)
631 int i, bit, byte; local
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/file/
Files2Test.java     [all...]
  /device/google/contexthub/firmware/os/core/
osApi.c 456 uint8_t byte = va_arg(args, int); local
464 *retValP = i2cSlaveTxPreamble(busId, byte, osExpApiI2cInternalCbk, cbkInfo);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
exceptions.c 1755 char byte[4]; local
    [all...]
obmalloc.c 1681 const uchar byte = *(q-i); local
1709 const uchar byte = tail[i]; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
exceptions.c 1743 char byte[4]; local
    [all...]
obmalloc.c 1632 const uchar byte = *(q-i); local
1660 const uchar byte = tail[i]; local
    [all...]

Completed in 1639 milliseconds

1 2 3 4 5 6 7 891011>>