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

1 2 34 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/time/
zoneinfo_read.go 37 p []byte
41 func (d *dataIO) read(n int) []byte {
61 func (d *dataIO) byte() (n byte, ok bool) { func
71 func byteString(p []byte) string {
86 func LoadLocationFromTZData(name string, data []byte) (*Location, error) {
89 // 4-byte magic "TZif"
94 // 1-byte version, then 15 bytes of padding
95 var p []byte
152 // 8-byte ints for txtimes and leap seconds
    [all...]
  /prebuilts/go/linux-x86/src/time/
zoneinfo_read.go 37 p []byte
41 func (d *dataIO) read(n int) []byte {
61 func (d *dataIO) byte() (n byte, ok bool) { func
71 func byteString(p []byte) string {
86 func LoadLocationFromTZData(name string, data []byte) (*Location, error) {
89 // 4-byte magic "TZif"
94 // 1-byte version, then 15 bytes of padding
95 var p []byte
152 // 8-byte ints for txtimes and leap seconds
    [all...]
  /art/runtime/
memory_region.h 85 // Read the value byte by byte in a little-endian fashion.
100 // Write the value byte by byte in a little-endian fashion.
113 // significant bit in the first byte.
116 uint8_t byte = *ComputeBitPointer(bit_offset, &bit_mask); local
117 return byte & bit_mask;
122 uint8_t* byte = ComputeBitPointer(bit_offset, &bit_mask); local
124 *byte |= bit_mask;
126 *byte &= ~bit_mask
    [all...]
  /device/google/marlin/camera/QCamera2/stack/mm-jpeg-interface/src/
mm_jpeg_mpo_composer.c 163 int32_t byte; local
170 byte = *(p_current_addr);
173 while ((byte != 0xFF) &&
177 if (byte != 0xFF) {
182 //Read the next byte after 0xFF
183 byte = *(p_current_addr);
184 LOGD("Byte %x", byte);
185 if (byte == app_marker) {
186 LOGD("Byte %x", byte)
    [all...]
  /external/ImageMagick/coders/
jbig.c 149 byte;
250 byte=0;
254 byte=(*p++);
255 index=(byte & 0x80) ? 0 : 1;
257 byte<<=1;
448 byte,
489 byte=0;
492 byte<<=1;
494 byte|=0x01;
498 *q++=byte;
146 byte; local
442 byte, local
    [all...]
xbm.c 208 byte,
372 byte=0;
376 byte=(size_t) (*p++);
377 SetPixelIndex(image,(Quantum) ((byte & 0x01) != 0 ? 0x01 : 0x00),q);
379 byte>>=1;
507 byte;
548 byte=0;
561 byte>>=1;
563 byte|=0x80;
568 Write a bitmap byte to the image file
204 byte, local
500 byte; local
    [all...]
  /external/compiler-rt/lib/builtins/
gcc_personality_v0.c 47 unsigned char byte; local
50 byte = *p++;
51 result |= (byte & 0x7f) << shift;
53 } while (byte & 0x80);
  /external/dhcpcd-6.8.2/dbus/
dbus-dict.c 89 unsigned char byte; local
110 byte = strtoul(data, NULL, 0);
114 &byte))
  /external/icu/icu4c/source/io/
ufmt_cmn.cpp 211 /* Get the first nibble of the byte */
212 uint8_t byte = (uint8_t)ufmt_digitvalue(buffer[count]); local
215 /* Get the second nibble of the byte when available */
216 byte = (uint8_t)(byte + (ufmt_digitvalue(buffer[--count]) << 4));
218 /* Write the byte into the array */
219 result.bytes[resultIdx] = byte;
  /external/libese/libese-hw/nxp/pn80t/
common.c 136 uint8_t byte = 0xff; local
144 if (ese->ops->hw_receive(ese, &byte, 1, complete) != 1) {
145 ALOGE("failed to read one byte");
149 if (byte == poll_for) {
150 ALOGV("Polled for byte seen: %x with %d intervals remaining.", poll_for,
152 ALOGV("RX[0]: %.2X", byte);
155 ALOGV("No match (saw %x)", byte);
348 [kNxpPn80tErrorPollRead] = "failed to read one byte",
  /external/libvncserver/libvncserver/
zrleencodetemplate.c 268 zrle_U8 byte = 0; local
275 byte = (byte << bppp) | index;
278 zrleOutStreamWriteU8(os, byte);
283 byte <<= 8 - nbits;
284 zrleOutStreamWriteU8(os, byte);
  /external/ltp/testcases/kernel/firmware/fw_load_user/
fw_load.c 207 int k, byte = fw_num; local
210 fputc(byte, f);
  /external/oj-libjdwp/src/share/npt/
utf.c 152 unsigned byte; local
154 byte = (unsigned char)string[i];
155 if ( (byte & 0x80) == 0 ) { /* 1byte encoding */
157 if ( byte == 0 ) {
158 newLength++; /* We gain one byte in length on NULL bytes */
160 } else if ( (byte & 0xE0) == 0xC0 ) { /* 2byte encoding */
165 i++; /* Skip next byte */
167 } else if ( (byte & 0xF0) == 0xE0 ) { /* 3byte encoding *
418 unsigned byte; local
    [all...]
  /external/pdfium/core/fxcrt/
cfx_seekablestreamproxy.cpp 44 uint8_t byte = static_cast<uint8_t>(*(pSrc + iIndex)); local
45 if (byte < 0x80) {
50 *pDst++ = byte;
53 } else if (byte < 0xc0) {
58 dwCode |= (byte & 0x3f) << (iPending * 6);
66 } else if (byte < 0xe0) {
69 dwCode = (byte & 0x1f) << 6;
70 } else if (byte < 0xf0) {
73 dwCode = (byte & 0x0f) << 12;
74 } else if (byte < 0xf8)
    [all...]
  /external/valgrind/none/tests/s390x/
mvcl.c 82 assert((pad & 0xFF) == pad); /* an 8-byte value */
107 printf("FAIL: pad byte modified (unused bits 0)\n");
126 printf("FAIL: pad byte modified (unused bits 1)\n");
174 uint8_t byte, buf[10], small[5], i; local
188 run_test(&byte, 1, NULL, 0, 'a');
196 byte = 'x';
197 run_test(&byte, 1, &byte, 1, 'a');
225 Pad byte unused */
243 Pad byte used; len2 == 0 *
    [all...]
  /external/vixl/src/
globals-vixl.h 64 typedef uint8_t byte; typedef in namespace:vixl
  /external/zlib/src/contrib/iostream2/
zstream.h 46 struct Val { unsigned char byte; size_t word; } val; member in struct:zstringlen::Val
130 zs > val.byte;
131 if (val.byte == 255) zs > val.word;
132 else val.word = val.byte;
278 val.byte = 255; val.word = ::strlen(x);
279 if (val.word < 255) zs < (val.byte = val.word);
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/mp4/parser/
viddec_fw_mp4_workload.c 89 uint32_t byte = 0; local
120 result = viddec_pm_get_au_pos(parent, &vop_info.bit_offset, &byte, &is_emul);
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/vc1/parser/
viddec_vc1_workload.c 532 uint32_t bit, byte; local
534 viddec_pm_get_au_pos(parent, &bit, &byte, &is_emul);
538 // Eg: 00 00 03 01 - slice data starts at the second byte of 0s, we still feed the data
539 // to the decoder starting at the first byte of 0s so that the decoder can detect the
  /hardware/intel/common/omx-components/videocodec/securevideo/moorefield/
LogDumpHelper.h 69 const uint8_t* byte = start ; local
72 while (byte < end && s < send)
74 s += snprintf(s, strSize - (s - str), "%02x ", *byte) ;
75 ++byte ;
  /hardware/interfaces/bluetooth/1.0/default/test/
h4_protocol_unittest.cc 105 char byte; local
106 TEMP_FAILURE_RETRY(read(fake_uart_, &byte, 1));
108 EXPECT_EQ(i == 0 ? type : data[i - 1], byte);
mct_protocol_unittest.cc 110 char byte; local
111 TEMP_FAILURE_RETRY(read(outbound_fd, &byte, 1));
113 EXPECT_EQ(data[i], byte);
  /hardware/qcom/camera/msm8998/QCamera2/stack/mm-jpeg-interface/src/
mm_jpeg_mpo_composer.c 163 int32_t byte; local
170 byte = *(p_current_addr);
173 while ((byte != 0xFF) &&
177 if (byte != 0xFF) {
182 //Read the next byte after 0xFF
183 byte = *(p_current_addr);
184 LOGD("Byte %x", byte);
185 if (byte == app_marker) {
186 LOGD("Byte %x", byte)
    [all...]
  /prebuilts/go/darwin-x86/test/
rename.go 20 byte +
66 byte = 3
65 byte = 3 const
rename1.go 13 var n byte // ERROR "not a type|expected type"
24 byte = 3
23 byte = 3 const

Completed in 1763 milliseconds

1 2 34 5 6 7 8 91011>>