HomeSort by relevance Sort by last modified time
    Searched defs:bytes (Results 251 - 275 of 479) sorted by null

<<11121314151617181920

  /external/e2fsprogs/lib/ext2fs/
icount.c 217 size_t bytes; local
244 bytes = (size_t) (icount->size * sizeof(struct ext2_icount_el));
246 printf("Icount allocated %u entries, %d bytes.\n",
247 icount->size, bytes);
253 memset(icount->list, 0, bytes);
  /external/flac/libFLAC/
bitreader.c 55 /* also, some sections currently only have fast versions for 4 or 8 bytes per word */
60 /* SWAP_BE_WORD_TO_HOST swaps bytes in a brword (which is always big-endian) if necessary to match host byte order */
86 * But to be practical it should be at least 1K bytes.
138 /* any incomplete word at the tail will be left-justified, and bytes from the read callback are added on the right */
142 unsigned bytes; /* # of bytes in incomplete word at buffer[words] */ member in struct:FLAC__BitReader
211 size_t bytes; local
217 end = br->words + (br->bytes? 1:0);
227 bytes = (br->capacity - br->words) * FLAC__BYTES_PER_WORD - br->bytes;
    [all...]
  /external/freetype/src/cff/
cffload.c 282 if ( FT_FRAME_EXTRACT( size, idx->bytes ) )
310 if ( idx->bytes )
311 FT_FRAME_RELEASE( idx->bytes );
410 FT_Byte* org_bytes = idx->bytes;
539 if ( idx->bytes )
542 *pbytes = idx->bytes + off1 - 1;
571 if ( idx->bytes == 0 )
588 FT_Byte* bytes; local
594 error = cff_index_access_element( idx, element, &bytes, &byte_len );
600 FT_MEM_COPY( name, bytes, byte_len )
    [all...]
  /external/icu4c/common/
ucnvbocu.c 46 * C0 control codes and space are encoded with their US-ASCII bytes.
60 /* number of lead bytes */
67 /* number of trail bytes */
76 /* number of lead bytes for positive and negative 2/3/4-byte sequences */
141 * but are also used as trail bytes in difference encoding
150 * External byte values that are illegal as trail bytes are mapped to -1.
254 * Encode a difference -0x10ffff..0x10ffff in 1..4 bytes
283 /* two bytes */
293 /* three bytes */
307 /* four bytes */
945 uint8_t *bytes; local
1167 uint8_t *bytes; local
    [all...]
  /external/icu4c/samples/ucnv/
convsamp.cpp 176 len will contain the number of bytes in target[] which were
195 'len' returns the number of OUTPUT bytes resulting from the
268 The 'buffersize' is in bytes of input.
271 expected for a given number of input bytes.
277 UChars as the input buffer has bytes.
281 chars as bytes are needed.
321 printf("input bytes %d / min chars %d = %d UChars\n",
330 // Convert bytes to unicode
424 fprintf(stderr, " Couldn't allocate %d bytes for freq counter\n", sizeof(CharFreqInfo)*charCount);
439 printf("input bytes %d / min chars %d = %d UChars\n"
620 char bytes[100]; local
714 char bytes[100]; local
    [all...]
  /external/icu4c/tools/makeconv/
makeconv.c 161 fprintf(stderr, "error: wrote %u bytes to the .cnv file but counted %u bytes\n", (int)sz2, (int)size);
166 printf("- Wrote %u bytes to the udata.\n", (int)sz2);
467 uint8_t bytes[UCNV_EXT_MAX_BYTES]; local
471 length=ucm_parseBytes(bytes, line, (const char **)&s);
474 uprv_memcpy(staticData->subChar, bytes, length);
481 uint8_t bytes[UCNV_EXT_MAX_BYTES]; local
484 if(1==ucm_parseBytes(bytes, line, (const char **)&s) && *s==0) {
485 staticData->subChar1=bytes[0];
828 if(!MBCSOkForBaseFromUnicode(mbcsData, m->b.bytes, m->bLen, m->u, m->f))
    [all...]
  /external/icu4c/tools/toolutil/
pkg_genc.c 123 "\t.align 8\n" /* Either align 8 bytes or 2^8 (256) bytes. 8 bytes is needed. */
143 "\t.align 8\n" /* Either align 8 bytes or 2^8 (256) bytes. 8 bytes is needed. */
381 " const char *bytes; \n"
405 " uint8_t bytes[%ld]; \n"
627 char bytes[2048]; member in union:__anon6279
679 length=T_FileStream_read(in, buffer.bytes, sizeof(buffer.bytes))
    [all...]
pkgitems.cpp 63 NativeItem() : pItem(NULL), pInfo(NULL), bytes(NULL), swapped(NULL), length(0) {}
74 return bytes;
91 bytes=pItem->data+itemHeaderLength;
110 bytes=swapped+itemHeaderLength;
118 const uint8_t *bytes; member in class:NativeItem
471 udata_printError(ds, "icupkg/ucnv_enumDependencies(): too few bytes (%d after header) for an ICU .cnv conversion table\n",
489 udata_printError(ds, "icupkg/ucnv_enumDependencies(): too few bytes (%d after headers) for an ICU MBCS .cnv conversion table\n",
522 udata_printError(ds, "icupkg/ucnv_enumDependencies(): too few bytes (%d after headers) for an ICU MBCS .cnv conversion table with extension data\n",
ucm.c 21 * as well as byte sequences with more than 4 bytes or more than one complete
43 printMapping(UCMapping *m, UChar32 *codePoints, uint8_t *bytes, FILE *f) {
53 fprintf(f, "\\x%02X", bytes[j]);
159 /* compare the bytes */
180 /* Unicode then bytes */
186 /* bytes then Unicode */
209 /* sorting by bytes first sorts the reverseMap; use indirection to mappings */
253 /* 2. sort reverseMap by mappings bytes first */
629 (subchar1!=0 && fromUMapping->bLen==1 && fromUMapping->b.bytes[0]==subchar1)
663 (subchar1!=0 && fromUMapping->bLen==1 && fromUMapping->b.bytes[0]==subchar1
1128 uint8_t bytes[UCNV_EXT_MAX_BYTES]; local
    [all...]
xmlparser.cpp 164 char bytes[4096], charsetBuffer[100]; local
183 bytesLength=T_FileStream_read(f, bytes, (int32_t)sizeof(bytes));
184 if(bytesLength<(int32_t)sizeof(bytes)) {
198 charset=ucnv_detectUnicodeSignature(bytes, bytesLength, NULL, &errorCode);
216 pb=bytes;
221 &pb, bytes+bytesLength,
275 // convert contents of bytes[bytesLength]
276 pb=bytes;
289 &pb, bytes+bytesLength
    [all...]
  /external/jpeg/
jmemdos.c 467 long length; /* It's easy to access first 4 bytes */
468 char bytes[18]; /* Misaligned fields in here! */ member in union:__anon6705
472 #define FIELD_AT(spec,offset,type) (*((type *) &(spec.bytes[offset])))
  /external/kernel-headers/original/linux/netfilter/
nf_conntrack_common.h 139 u_int32_t bytes; member in struct:ip_conntrack_counter
  /external/libffi/darwin-x86/
ffi.h 182 unsigned bytes; member in struct:__anon7293
  /external/libffi/include/
ffi_real.h 183 unsigned bytes; member in struct:__anon7301
  /external/libffi/src/mips/
n32.S 36 #define bytes a2 define
63 REG_S bytes, 2*FFI_SIZEOF_ARG($fp) # bytes
69 move v0, bytes
70 bge bytes, 4 * FFI_SIZEOF_ARG, bigger
94 # Load the number of bytes
o32.S 36 #define bytes a2 define
66 blt bytes, v0, sixteen
68 ADDU v0, bytes, 7 # make sure it is aligned
  /external/libffi/src/powerpc/
ffi.c 68 | Return address from ffi_call_SYSV 4bytes | higher addresses
92 const unsigned bytes = ecif->cif->bytes; local
144 stacktop.c = (char *) stack + bytes;
156 FFI_ASSERT ((bytes & 0xF) == 0);
380 | Ret addr from ffi_call_LINUX64 8bytes | higher addresses
382 | CR save area 8bytes |
412 const unsigned long bytes = ecif->cif->bytes; local
455 stacktop.c = (char *) stack + bytes;
594 unsigned bytes; local
    [all...]
  /external/openssl/crypto/
mem_dbg.c 661 long bytes; member in struct:mem_leak_st
705 l->bytes+=m->num;
766 ml.bytes=0;
773 BIO_printf(b,"%ld bytes leaked in %d chunks\n",
774 ml.bytes,ml.chunks);
  /external/protobuf/src/google/protobuf/io/
coded_stream.cc 149 << " bytes). To increase the limit (or to disable these "
248 uint8 bytes[sizeof(*value)]; local
252 // Fast path: Enough bytes in the buffer to read directly.
257 if (!ReadRaw(bytes, sizeof(*value))) return false;
258 ptr = bytes;
265 uint8 bytes[sizeof(*value)]; local
269 // Fast path: Enough bytes in the buffer to read directly.
274 if (!ReadRaw(bytes, sizeof(*value))) return false;
275 ptr = bytes;
286 // Fast path: We have enough bytes left in the buffer to guarantee tha
586 uint8 bytes[sizeof(value)]; local
601 uint8 bytes[sizeof(value)]; local
656 uint8 bytes[kMaxVarint32Bytes]; local
756 uint8 bytes[kMaxVarintBytes]; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/cdrom/macos/
SDL_syscdrom_c.h 114 unsigned char bytes[22]; member in union:CDCntrlParam::__anon9424
  /external/qemu/distrib/sdl-1.2.12/src/video/directfb/
SDL_DirectFB_video.c 162 int bytes = (bpp + 7) / 8; local
166 if (bytes == DFB_BYTES_PER_PIXEL(dlc.pixelformat) && bytes > 1)
169 switch (bytes)
  /external/qemu/
posix-aio-compat.c 131 * successful if it has written the number full number of bytes.
481 /* read all bytes from signal pipe */
483 char bytes[16]; local
485 len = read(s->rfd, bytes, sizeof(bytes));
488 if (len == sizeof(bytes))
  /external/tremolo/Tremolo/
ogg.h 152 long bytes; member in struct:__anon11550
192 extern int ogg_sync_wrote(ogg_sync_state *oy, long bytes);
  /external/webkit/Source/WebKit/efl/ewk/
ewk_tiled_matrix.c 51 } tiles, bytes; member in struct:_Ewk_Tile_Matrix::__anon13342
88 tm->stats.bytes.freed += t->bytes;
131 tm->stats.bytes.freed += t->bytes;
196 uint64_t tiles, bytes; local
209 bytes = tm->stats.bytes.allocated - tm->stats.bytes.freed;
212 bytes_leaked += bytes;
    [all...]
  /external/wpa_supplicant/
ctrl_iface_named_pipe.c 95 static VOID WINAPI ctrl_iface_read_completed(DWORD err, DWORD bytes,
102 static VOID WINAPI global_iface_read_completed(DWORD err, DWORD bytes,
260 static VOID WINAPI ctrl_iface_write_completed(DWORD err, DWORD bytes,
265 "err=%d bytes=%d", dst, (int) err, (int) bytes);
352 static VOID WINAPI ctrl_iface_read_completed(DWORD err, DWORD bytes,
357 "bytes=%d", dst, (int) err, (int) bytes);
358 if (err == 0 && bytes > 0)
359 wpa_supplicant_ctrl_iface_rx(dst, bytes);
367 DWORD bytes; local
783 DWORD bytes; local
    [all...]

Completed in 2116 milliseconds

<<11121314151617181920