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

123456789

/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/skia/src/effects/
H A DSkColorMatrixFilter.cpp10 static SkScalar byte_to_scale(U8CPU byte) { argument
11 if (0xFF == byte) {
15 return byte * 0.00392156862745f;
/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/libvorbis/doc/
H A D02-bitpacking.tex21 In most contemporary architectures, a 'byte' is synonymous with an
24 purposes of the bitpacking convention, a byte implies the native,
32 The most ubiquitous architectures today consider a 'byte' to be an
35 convention is still well defined for any native byte size; Vorbis uses
37 that a byte is one octet for purposes of example.
41 A byte has a well-defined 'least significant' bit (LSb), which is the
42 only bit set when the byte is storing the two's complement integer
43 value +1. A byte's 'most significant' bit (MSb) is at the opposite
44 end of the byte. Bits in a byte ar
[all...]
/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...]
H A Drgf.c127 byte,
200 byte=0;
204 byte=(size_t) (*p++);
205 SetPixelIndex(image,(Quantum) ((byte & 0x01) != 0 ? 0x01 : 0x00),q);
207 byte>>=1;
330 byte;
369 byte=0;
372 byte>>=1;
374 byte|=0x80;
379 Write a bitmap byte t
124 byte, local
324 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-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/pdfium/core/fxcrt/
H A Dfx_basic_utf.cpp16 void CFX_UTF8Decoder::Input(uint8_t byte) { argument
17 if (byte < 0x80) {
19 m_Buffer.AppendChar(byte);
20 } else if (byte < 0xc0) {
25 m_PendingChar |= (byte & 0x3f) << (m_PendingBytes * 6);
29 } else if (byte < 0xe0) {
31 m_PendingChar = (byte & 0x1f) << 6;
32 } else if (byte < 0xf0) {
34 m_PendingChar = (byte & 0x0f) << 12;
35 } else if (byte <
[all...]
/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...]
/external/iproute2/lib/
H A Ddnet_ntop.c11 u_int8_t byte[2]; member in union:__anon7984
16 return ((u_int16_t)u.byte[0]) | (((u_int16_t)u.byte[1]) << 8);
H A Ddnet_pton.c11 u_int8_t byte[2]; member in union:__anon7985
16 return ((u_int16_t)u.byte[0]) | (((u_int16_t)u.byte[1]) << 8);
/external/libese/libese/tests/
H A Dbitspec_unittests.cpp75 uint8_t byte = 0; local
80 bs_assign(&byte, kTestSpec.single.bit[bit], 1);
81 EXPECT_EQ(expected_byte, byte);
90 uint8_t byte = bs_set(0, kTestSpec.single.bit[bit], 1); local
91 EXPECT_EQ(expected_byte, byte);
100 uint8_t byte = bs_set(0xff, kTestSpec.single.bit[bit], 0); local
101 EXPECT_EQ(expected_byte, byte);
109 uint8_t byte = 0xff; local
111 byte &= bs_clear(kTestSpec.single.bit[bit]);
112 EXPECT_EQ(expected_byte, byte);
118 uint8_t byte = 0; local
143 uint8_t byte = 0; local
[all...]

Completed in 1141 milliseconds

123456789