/external/chromium_org/third_party/re2/re2/testing/ |
re2_test.cc | 1012 // Both should match in either mode, bytes or UTF-8 1119 int bytes = 15 * 1024; \/\/ enough to crash PCRE local [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
heap-profile-table.h | 112 // Record an allocation at 'ptr' of 'bytes' bytes. 'stack_depth' 115 void RecordAlloc(const void* ptr, size_t bytes, 183 // of currently allocated bytes. 247 size_t bytes; // Number of bytes in this allocation member in struct:HeapProfileTable::AllocValue 278 static size_t AllocValueSize(const AllocValue& v) { return v.bytes; } 334 : bytes(bytes_arg), 338 size_t bytes; member in struct:HeapProfileTable::TypeCount 380 info.object_size = v->bytes; [all...] |
/external/chromium_org/tools/android/forwarder/ |
forwarder.cc | 138 LOG(INFO) << "No.: age up(bytes,idle) down(bytes,idle)"; 226 int bytes = buffer1.Read(socket1); local 227 if (bytes <= 0) 229 info->socket1_bytes += bytes; 233 int bytes = buffer2.Read(socket2); local 234 if (bytes <= 0) 236 info->socket2_bytes += bytes;
|
/external/chromium_org/ui/base/resource/ |
resource_bundle.cc | 372 base::RefCountedStaticMemory* bytes = NULL; local 374 bytes = delegate_->LoadDataResourceBytes(resource_id, scale_factor); 376 if (!bytes) { 380 bytes = new base::RefCountedStaticMemory( 385 return bytes;
|
/external/clang/test/Analysis/ |
bstring.c | 432 char *bytes = malloc(sizeof(char) * (length + 1)); local 433 memcpy(bytes, input, length); 434 char x = bytes[0]; // no warning 435 free(bytes);
|
/external/compiler-rt/lib/lsan/ |
lsan_common.cc | 321 Printf(" count bytes template\n"); 481 uptr bytes = 0, allocations = 0; local 484 bytes += leaks_[i].total_size; 491 bytes, allocations);
|
/external/dexmaker/src/dx/java/com/android/dx/util/ |
ByteArrayAnnotatedOutput.java | 60 * {@code >= 8 (if used);} the number of bytes of hex output to use 118 * may be larger than the number of bytes written 131 * bytes at the end). 256 public void write(ByteArray bytes) { 257 int blen = bytes.size(); 268 bytes.getBytes(data, writeAt); 273 public void write(byte[] bytes, int offset, int length) { 279 if (((offset | length | end) < 0) || (bytesEnd > bytes.length)) { 280 throw new IndexOutOfBoundsException("bytes.length " + 281 bytes.length + "; " [all...] |
/external/dhcpcd/ |
net.c | 766 uint16_t bytes, udpsum; local 786 bytes = ntohs(packet.ip.ip_len); 787 if (data_len < bytes) { 803 if (udpsum && checksum(&packet, bytes) != udpsum) {
|
/external/dropbear/ |
keyimport.c | 226 * bytes used out of the source data. 285 * number of bytes consumed. Assumes dest contains enough space. 303 * Identifier is multiple bytes: the first byte is 11111 304 * plus the flags, and subsequent bytes encode the value of 311 continue; /* count the bytes */ 327 * Length is multiple bytes. The first is 0x80 plus the 328 * number of subsequent bytes, and the subsequent bytes 332 continue; /* count the bytes */ 346 struct mpint_pos { void *start; int bytes; }; member in struct:mpint_pos [all...] |
/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/elfutils/libasm/ |
libasmP.h | 103 /* Currently used number of bytes in the block. */ 106 /* Number of bytes allocated. */ 120 char bytes[flexarr_size]; member in struct:AsmScn::FillPattern 259 /* Ensure there are at least LEN bytes available in the output buffer
|
/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/icu4c/common/ |
ucnvbocu.cpp | 49 * C0 control codes and space are encoded with their US-ASCII bytes. 63 /* number of lead bytes */ 70 /* number of trail bytes */ 79 /* number of lead bytes for positive and negative 2/3/4-byte sequences */ 144 * but are also used as trail bytes in difference encoding 153 * External byte values that are illegal as trail bytes are mapped to -1. 220 /** Is a diff value encodable in two bytes? */ 268 * Encode a difference -0x10ffff..0x10ffff in 1..4 bytes 298 /* two bytes */ 308 /* three bytes */ 950 uint8_t *bytes; local 1172 uint8_t *bytes; local [all...] |
/external/icu4c/samples/ucnv/ |
convsamp.cpp | 169 len will contain the number of bytes in target[] which were 188 'len' returns the number of OUTPUT bytes resulting from the 263 The 'buffersize' is in bytes of input. 266 expected for a given number of input bytes. 272 UChars as the input buffer has bytes. 276 chars as bytes are needed. 316 printf("input bytes %d / min chars %d = %d UChars\n", 325 // Convert bytes to unicode 418 fprintf(stderr, " Couldn't allocate %d bytes for freq counter\n", sizeof(CharFreqInfo)*charCount); 433 printf("input bytes %d / min chars %d = %d UChars\n" 615 char bytes[100]; local 709 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 | 119 "\t.align 8\n" /* Either align 8 bytes or 2^8 (256) bytes. 8 bytes is needed. */ 139 "\t.align 8\n" /* Either align 8 bytes or 2^8 (256) bytes. 8 bytes is needed. */ 147 "\t.align 8\n" /* Either align 8 bytes or 2^8 (256) bytes. 8 bytes is needed. */ 388 " const char *bytes; \n 637 char bytes[2048]; member in union:__anon20991 [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 1129 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:__anon21444 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:__anon22133
|
/external/libffi/include/ |
ffi_real.h | 183 unsigned bytes; member in struct:__anon22141
|
/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
|