Searched defs:byte (Results 1 - 25 of 252) sorted by relevance

1234567891011

/external/pdfium/core/fxcrt/
H A Dcfx_utf8decoder.cpp18 void CFX_UTF8Decoder::Input(uint8_t byte) { argument
19 if (byte < 0x80) {
21 m_Buffer.AppendChar(byte);
22 } else if (byte < 0xc0) {
27 m_PendingChar |= (byte & 0x3f) << (m_PendingBytes * 6);
31 } else if (byte < 0xe0) {
33 m_PendingChar = (byte & 0x1f) << 6;
34 } else if (byte < 0xf0) {
36 m_PendingChar = (byte & 0x0f) << 12;
37 } else if (byte <
[all...]
H A Dcfx_binarybuf.h33 void AppendByte(uint8_t byte) { argument
35 m_pBuffer.get()[m_DataSize++] = byte;
/external/elfutils/libasm/
H A Dasm_adduleb128.c58 uint32_t byte; local
62 byte = num & 0x7f;
66 /* This is the last byte. */
69 *dest++ = byte | 0x80;
72 *dest++ = byte;
H A Dasm_addsleb128.c58 uint32_t byte; local
62 byte = 0;
66 byte = num & 0x7f;
70 /* This is the last byte. */
73 *dest++ = byte | 0x80;
76 *dest++ = byte;
/external/libunwind/src/mi/
H A D_ReadSLEB.c7 unw_word_t byte, result = 0; local
12 byte = *bp++;
13 result |= (byte & 0x7f) << shift;
15 if ((byte & 0x80) == 0)
19 if (shift < 8 * sizeof (unw_word_t) && (byte & 0x40) != 0)
H A D_ReadULEB.c7 unw_word_t byte, result = 0; local
12 byte = *bp++;
13 result |= (byte & 0x7f) << shift;
14 if ((byte & 0x80) == 0)
/external/vboot_reference/firmware/lib/cgptlib/
H A Dcrc32.c23 /* we hand it to the UART in the order low-byte to high-byte; the UART */
38 /* using byte-swap instructions. */
104 uint8_t *byte = (uint8_t *)buffer; local
109 value = crc32_tab[(value ^ byte[i]) & 0xff] ^ (value >> 8);
/external/vulkan-validation-layers/libs/glm/gtx/
H A Draw_data.hpp54 //! Type for byte numbers.
56 typedef detail::uint8 byte; typedef in namespace:glm
/external/v8/src/
H A Ddisasm.h12 typedef unsigned char byte; typedef in namespace:disasm
23 virtual const char* NameOfAddress(byte* addr) const;
24 virtual const char* NameOfConstant(byte* addr) const;
25 virtual const char* NameInCode(byte* addr) const;
42 int InstructionDecode(v8::internal::Vector<char> buffer, byte* instruction);
46 int ConstantPoolSizeAt(byte* instruction);
50 static void Disassemble(FILE* f, byte* begin, byte* end);
/external/v8/src/regexp/
H A Dregexp-macro-assembler-irregexp-inl.h16 void RegExpMacroAssemblerIrregexp::Emit(uint32_t byte, argument
18 uint32_t word = ((twenty_four_bits << BYTECODE_SHIFT) | byte);
/external/ImageMagick/coders/
H A Dcip.c188 byte;
241 byte=(unsigned char)
246 (void) FormatLocaleString(buffer,MagickPathExtent,"%02x",byte);
253 byte=(unsigned char)
258 (void) FormatLocaleString(buffer,MagickPathExtent,"%02x",~byte);
183 byte; local
H A Dmono.c119 byte;
169 byte=0;
173 byte=(size_t) ReadBlobByte(image);
175 SetPixelIndex(image,((byte & 0x01) != 0) ? 0x00 : 0x01,q);
177 SetPixelIndex(image,((byte & 0x01) != 0) ? 0x01 : 0x00,q);
181 byte>>=1;
305 byte;
335 byte=0;
338 byte>>=1;
342 byte|
116 byte; local
299 byte; local
[all...]
H A Dmac.c119 byte,
177 byte=(unsigned char) (~ReadBlobByte(image));
181 *p++=byte;
191 byte=0;
195 byte=(*p++);
196 SetPixelIndex(image,((byte & 0x80) != 0 ? 0x01 : 0x00),q);
198 byte<<=1;
215 byte=(unsigned char) (~ReadBlobByte(image));
216 *p++=byte;
226 byte
117 byte, local
[all...]
H A Dotb.c108 byte;
182 byte=0;
187 byte=ReadBlobByte(image);
188 if (byte == EOF)
191 SetPixelIndex(image,(byte & (0x01 << (7-bit))) ? 0x00 : 0x01,q);
326 byte,
369 byte=0;
373 byte|=0x1 << (7-bit);
377 (void) WriteBlobByte(image,byte);
379 byte
106 byte; local
321 byte, local
[all...]
/external/clang/test/Sema/
H A Dinline-asm-validate-aarch64.c6 uint8_t byte; local
8 __asm__ volatile("ldrb %0, [%1]" : "=r" (byte) : "r" (addr) : "memory");
13 return byte;
17 uint8_t byte; local
19 __asm__ volatile("ldrb %[s0], [%[s1]]" : [s0] "=r" (byte) : [s1] "r" (addr) : "memory");
24 return byte;
30 uint8_t byte; local
32 __asm__ volatile("ldrb "PERCENT"[s0], [%[s1]]" : [s0] "=r" (byte) : [s1] "r" (addr) : "memory");
37 return byte;
/external/elfutils/libcpu/
H A Di386_parse.y103 /* The byte encoding. */
238 %type <bit> bit byte bytes
391 bytes: bytes ',' byte
401 | byte
408 byte: byte bit label
1270 /* We must always count the mod/rm byte. */
1285 /* Now create the mask and byte values. */
1286 uint8_t byte = 0;
1294 byte
[all...]
/external/google-benchmark/test/
H A Ddonotoptimize_test.cc16 unsigned char &byte; member in struct:BitRef
25 BitRef(int i, unsigned char& b) : index(i), byte(b) {}
/external/google-breakpad/src/client/linux/minidump_writer/
H A Dlinux_dumper_unittest_helper.cc62 uint8_t byte = 1; local
63 if (write(pipefd, &byte, sizeof(byte)) != sizeof(byte)) {
/external/google-breakpad/src/processor/
H A Dexploitability.cc101 uint8_t byte = (address >> (8*i)) & 0xff; local
102 if ((byte >= ' ' && byte <= '~') || byte == 0)
/external/libcxx/utils/google-benchmark/test/
H A Ddonotoptimize_test.cc16 unsigned char &byte; member in struct:BitRef
25 BitRef(int i, unsigned char& b) : index(i), byte(b) {}
/external/puffin/src/
H A Dpuff_io_unittest.cc55 uint8_t byte; local
56 pd.read_fn(&byte, 1);
57 EXPECT_EQ(byte, 10);
183 pd.byte = 10;
234 // Block metadata takes two + varied bytes, so on a thre byte buffer, only one
361 uint8_t byte; local
362 pd.read_fn(&byte, 1);
363 ASSERT_EQ(byte, 10);
373 pd.byte = 12;
379 pd.byte
394 uint8_t byte; local
402 uint8_t byte; local
[all...]
/external/skia/src/effects/
H A DSkColorMatrixFilter.cpp15 static SkScalar byte_to_scale(U8CPU byte) { argument
16 if (0xFF == byte) {
20 return byte * 0.00392156862745f;
/external/skqp/src/effects/
H A DSkColorMatrixFilter.cpp15 static SkScalar byte_to_scale(U8CPU byte) { argument
16 if (0xFF == byte) {
20 return byte * 0.00392156862745f;
/external/swiftshader/third_party/LLVM/include/llvm-c/
H A DEnhancedDisassembly.h31 @param byte A pointer whose target should be filled in with the data returned.
32 @param address The address of the byte to be read.
36 typedef int (*EDByteReaderCallback)(uint8_t *byte, uint64_t address, void *arg);
155 @param address The address of the first byte of the instruction.
436 @param byte A pointer whose target should be filled in with the data returned.
437 @param address The address of the byte to be read.
440 typedef int (^EDByteBlock_t)(uint8_t *byte, uint64_t address); variable
473 @param address The address of the first byte of the instruction.
/external/webrtc/webrtc/base/
H A Dbitbuffer.cc20 // Returns the lowest (right-most) |bit_count| bits in |byte|.
21 uint8_t LowestBits(uint8_t byte, size_t bit_count) { argument
23 return byte & ((1 << bit_count) - 1);
26 // Returns the highest (left-most) |bit_count| bits in |byte|, shifted to the
28 uint8_t HighestBits(uint8_t byte, size_t bit_count) { argument
32 return (byte & mask) >> shift;
35 // Returns the highest byte of |val| in a uint8_t.
117 // If we're reading fewer bits than what's left in the current byte, just
118 // return the portion of this byte that we need.
130 // Whatever we have left is smaller than a byte, s
[all...]

Completed in 688 milliseconds

1234567891011