HomeSort by relevance Sort by last modified time
    Searched defs:bytes (Results 1376 - 1400 of 3342) sorted by null

<<51525354555657585960>>

  /external/dhcpcd-6.8.2/
dhcp6.c 2135 ssize_t bytes; local
2157 ssize_t bytes; local
2605 ssize_t bytes; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-apache-bcel.jar 
ant-launcher.jar 
  /external/freetype/src/cff/
cfftypes.h 51 /* off_size :: The size in bytes of object offsets in index. */
54 /* bytes. */
61 /* bytes :: If the index is loaded in memory, its bytes. */
74 FT_Byte* bytes; member in struct:CFF_IndexRec_
317 FT_UInt blend_used; /* number of bytes in use */
318 FT_UInt blend_alloc; /* number of bytes allocated */
  /external/google-breakpad/src/processor/
minidump.cc 152 // the most significant bytes will already be in the high field.
1941 unsigned int bytes = local
4501 uint32_t bytes; local
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-layout-common-private.hh 1272 const BYTE *bytes = &StructAfter<BYTE> (regionIndices); local
    [all...]
  /external/icu/icu4c/source/common/
ucnvmbcs.cpp 21 * - legacy variable-length codepages with up to 4 bytes per character
30 * - byte sequences must not have leading zero bytes
32 * - limitation to up to 4 bytes per character
163 * One format for transitional entries (bit 31 not set) for non-final bytes, and
281 * at least two states for the trail bytes:
294 * Converting from Unicode to codepage bytes --------------------------------***
298 * a sequence of 1..4 bytes, in addition to a flag that indicates if there is
304 * with the resulting bytes is at offsetFromUBytes.
335 * Bits 15..0 contain the index to stage 3, which must be multiplied by 16*(bytes per char)
337 * Stage 3 contains 2, 3, or 4 bytes per result
919 const uint8_t *stage3, *bytes; local
1137 char bytes[4]; local
1261 const uint8_t *bytes; local
1410 uint8_t *bytes, *p; local
2478 uint8_t *bytes; local
3148 uint8_t *bytes=cnv->toUBytes; local
3163 uint8_t *bytes=cnv->toUBytes; local
3415 const uint8_t *bytes; local
4080 const uint8_t *p, *bytes; local
    [all...]
  /external/icu/icu4c/source/test/intltest/
apicoll.cpp 2236 const char* bytes = (const char *)key.getByteArray(length); local
    [all...]
  /external/iptables/iptables/
nft.c 1005 int add_counters(struct nftnl_rule *r, uint64_t packets, uint64_t bytes)
1014 nftnl_expr_set_u64(expr, NFTNL_EXPR_CTR_BYTES, bytes);
1222 uint64_t bytes = nftnl_chain_get_u64(c, NFTNL_CHAIN_BYTES); local
1233 pkts, bytes);
1235 printf(":%s - [%"PRIu64":%"PRIu64"]\n", chain, pkts, bytes);
    [all...]
  /external/ltp/testcases/kernel/io/ltp-aiodio/
aio-stress.c 949 size_t bytes = num_files * depth * sizeof(*t->ios); local
951 t->ios = malloc(bytes);
956 memset(t->ios, 0, bytes);
1321 printf("\t-v verification of bytes written\n");
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
r600_shader.c 228 unsigned char * bytes, unsigned num_bytes);
235 unsigned char * bytes; local
244 r600_llvm_compile(mod, &bytes, &byte_count, r600_ctx->family , dump);
248 r600_bytecode_from_byte_stream(&shader_ctx, bytes, byte_count);
261 static uint32_t i32_from_byte_stream(unsigned char * bytes,
267 out |= bytes[(*bytes_read)++] << (8 * i);
272 static unsigned r600_src_from_byte_stream(unsigned char * bytes,
277 sel0 = bytes[bytes_read++];
278 sel1 = bytes[bytes_read++];
280 alu->src[src_idx].chan = bytes[bytes_read++]
    [all...]
  /external/mesa3d/src/mesa/main/
format_pack.c 2621 GLuint bytes = _mesa_get_format_bytes(format); local
    [all...]
  /external/minijail/
libminijail.c 1790 size_t bytes = read(fd, &sz, sizeof(sz)); local
    [all...]
  /external/openssh/
clientloop.c 1074 int bytes = 0; local
    [all...]
packet.c 102 u_int64_t bytes; member in struct:packet_state
195 /* roundup current message to extra_pad bytes */
399 *ibytes = ssh->state->p_read.bytes;
401 *obytes = ssh->state->p_send.bytes;
875 /* Add check bytes. */
904 state->p_send.bytes += len +
1111 * minimum padding is 4 bytes
    [all...]
ssh-keygen.c 414 u_int bytes, bignum_bits; local
419 bytes = (bignum_bits + 7) / 8;
420 if (sshbuf_len(b) < bytes)
422 __func__, bytes, sshbuf_len(b));
423 if (BN_bin2bn(sshbuf_ptr(b), bytes, value) == NULL)
425 if ((r = sshbuf_consume(b, bytes)) != 0)
522 "remaining bytes in key blob %d", rlen);
    [all...]
  /external/parameter-framework/upstream/parameter/
ParameterMgr.cpp 1446 vector<uint8_t> bytes; local
1493 vector<uint8_t> bytes; local
    [all...]
  /external/protobuf/src/google/protobuf/compiler/js/
js_generator.cc 126 // The mode of operation for bytes fields. Historically JSPB always carried
127 // bytes as JS {string}, containing base64 content by convention. With binary
568 uint16 DecodeUTF8Codepoint(uint8* bytes, size_t* length) {
573 if ((*bytes & 0x80) == 0) {
575 } else if ((*bytes & 0xe0) == 0xc0) {
577 } else if ((*bytes & 0xf0) == 0xe0) {
586 // Not enough bytes -- don't accept.
593 case 1: return bytes[0];
594 case 2: return ((bytes[0] & 0x1F) << 6) |
595 ((bytes[1] & 0x3F) << 0)
614 uint8 bytes[3] = { local
    [all...]
  /external/selinux/libsepol/src/
services.c 1727 size_t bytes = size * n; local
    [all...]
  /external/squashfs-tools/squashfs-tools/
action.c 1197 int n, bytes; local
1202 n = sscanf(argv[0], "%o%n", &mode, &bytes);
1208 if (argv[0][bytes] != '\0') {
1209 SYNTAX_ERROR("Unexpected trailing bytes after octal "
    [all...]
unsquashfs.c 58 int bytes = 0, swap, file_count = 0, dir_count = 0, sym_count = 0, variable
540 /* unsigned int shouldn't ever need more than 11 bytes
554 /* unsigned int shouldn't ever need more than 11 bytes
600 int bytes)
610 hash_table_entry->bytes = bytes;
625 return hash_table_entry->bytes;
631 int read_fs_bytes(int fd, long long byte, int bytes, void *buff)
636 TRACE("read_bytes: reading from position 0x%llx, bytes %d\n", byte,
637 bytes);
777 int size = 0, bytes = 0, res; local
1187 int bytes = 0, size = 0, res; local
1657 int bytes; local
1747 int res, bytes = 0; local
    [all...]
  /external/swiftshader/src/OpenGL/libGLESv2/
Program.cpp 71 size_t bytes = UniformTypeSize(type) * size(); local
72 data = new unsigned char[bytes];
73 memset(data, 0, bytes);
    [all...]
  /external/swiftshader/src/Renderer/
Surface.cpp 53 void *element = (unsigned char*)buffer + x * bytes + y * pitchB + z * sliceB;
60 void *element = (unsigned char*)buffer + x * bytes + y * pitchB;
371 void *element = (unsigned char*)buffer + x * bytes + y * pitchB + z * sliceB;
378 void *element = (unsigned char*)buffer + x * bytes + y * pitchB;
1448 int Surface::bytes(Format format) function in class:sw::Surface
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/Disassembler/
ARMDisassembler.cpp 345 uint8_t bytes[4]; local
350 // We want to read exactly 4 bytes of data.
351 if (Region.readBytes(Address, 4, (uint8_t*)bytes, NULL) == -1) {
357 uint32_t insn = (bytes[3] << 24) |
358 (bytes[2] << 16) |
359 (bytes[1] << 8) |
360 (bytes[0] << 0);
695 uint8_t bytes[4]; local
700 // We want to read exactly 2 bytes of data.
701 if (Region.readBytes(Address, 2, (uint8_t*)bytes, NULL) == -1)
    [all...]
  /external/syslinux/gpxe/src/drivers/net/phantom/
phantom.c 419 uint8_t bytes[8]; member in union:__anon32834
436 return cache.bytes[sub_offset];
1424 uint8_t bytes[8]; member in union:phantom_clp_data
    [all...]

Completed in 682 milliseconds

<<51525354555657585960>>