HomeSort by: relevance | last modified time | path
    Searched defs:first_byte (Results 1 - 11 of 11) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/crypto/
quic_vlint.c 37 uint8_t first_byte = buf[0]; local
38 size_t sz = ossl_quic_vlint_decode_len(first_byte);
41 return first_byte & 0x3F;
44 return ((uint64_t)(first_byte & 0x3F) << 8)
48 return ((uint64_t)(first_byte & 0x3F) << 24)
53 return ((uint64_t)(first_byte & 0x3F) << 56)
  /src/sbin/blkdiscard/
blkdiscard.c 70 " [-o first_byte] <file>\n");
83 write_one(int fd, off_t discard_size, off_t first_byte)
89 if (pwrite(fd, zeros, discard_size, first_byte) != discard_size)
91 } else if (fdiscard(fd, first_byte, discard_size) != 0)
98 off_t first_byte = 0, end_offset = 0; local
129 first_byte = val;
167 end_offset = first_byte + length;
214 size -= first_byte;
233 name, (long long)first_byte, (long long)size,
249 write_one(fd, discard_size, first_byte);
    [all...]
  /src/external/mpl/dhcp/dist/omapip/
buffer.c 370 unsigned first_byte; local
392 first_byte = 0;
394 first_byte = buffer -> head + 1;
396 if (first_byte > buffer -> tail) {
398 first_byte);
401 buffer -> tail - first_byte;
414 &buffer -> buf [first_byte],
421 memcpy (bufp, &buffer -> buf [first_byte],
426 buffer -> head = first_byte + bytes_this_copy - 1;
457 unsigned first_byte; local
    [all...]
  /src/external/gpl2/texinfo/dist/info/
nodes.c 693 long first_byte;
735 subfile->first_byte = (long) atol (line + colon);
817 subfiles[i] && entry->nodestart >= subfiles[i]->first_byte;
843 entry->nodestart -= subfiles[i - 1]->first_byte;
689 long first_byte; member in struct:__anon9534
  /src/external/gpl3/gcc/dist/gcc/
gimple-ssa-store-merging.cc 1935 unsigned int first_byte = bitpos / BITS_PER_UNIT; local
1948 if (first_byte >= total_bytes)
1950 total_bytes -= first_byte;
1957 memset (ptr + first_byte, '\0', rhs_bytes);
1960 return native_encode_expr (expr, ptr + first_byte, total_bytes) != 0;
1966 |--------|--------|--------| ptr + first_byte
1976 |---00000|00000000|000-----| ptr + first_byte
1980 |---xxxxx||xxxxxxxx||xxx-----| ptr + first_byte.
1985 ptr + first_byte |--------|--------|--------|
1997 ptr + first_byte |-----000||00000000||00000---
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
gimple-ssa-store-merging.cc 1851 unsigned int first_byte = bitpos / BITS_PER_UNIT; local
1864 if (first_byte >= total_bytes)
1866 total_bytes -= first_byte;
1873 memset (ptr + first_byte, '\0', rhs_bytes);
1876 return native_encode_expr (expr, ptr + first_byte, total_bytes) != 0;
1882 |--------|--------|--------| ptr + first_byte
1892 |---00000|00000000|000-----| ptr + first_byte
1896 |---xxxxx||xxxxxxxx||xxx-----| ptr + first_byte.
1901 ptr + first_byte |--------|--------|--------|
1913 ptr + first_byte |-----000||00000000||00000---
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/loongarch/
loongarch.cc 1787 HOST_WIDE_INT val, first_byte; local
1796 first_byte = val & 0xff;
1800 if ((val & 0xff) != first_byte)
  /src/external/gpl3/gcc/dist/gcc/config/mips/
mips.cc 2041 HOST_WIDE_INT val, first_byte;
2050 first_byte = val & 0xff;
2054 if ((val & 0xff) != first_byte)
2031 HOST_WIDE_INT val, first_byte; local
  /src/external/gpl3/gcc.old/dist/gcc/config/mips/
mips.cc 1961 HOST_WIDE_INT val, first_byte;
1970 first_byte = val & 0xff;
1974 if ((val & 0xff) != first_byte)
1951 HOST_WIDE_INT val, first_byte; local
  /src/external/gpl3/gcc/dist/gcc/config/rs6000/
rs6000.cc 29086 unsigned char first_byte = info->bytes[0];
29089 if (first_byte != info->bytes[i])
29026 unsigned char first_byte = info->bytes[0]; local
  /src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
rs6000.cc 28650 unsigned char first_byte = info->bytes[0];
28653 if (first_byte != info->bytes[i])
28590 unsigned char first_byte = info->bytes[0]; local

Completed in 291 milliseconds