/external/chromium_org/third_party/tcmalloc/vendor/src/ |
profiledata.cc | 194 fprintf(stderr, "PROFILE: interrupts/evictions/bytes = %d/%d/%" PRIuS "\n", 326 size_t bytes = sizeof(evict_[0]) * num_evicted_; local 327 total_bytes_ += bytes; 328 FDWrite(out_, buf, bytes);
|
/external/chromium_org/third_party/webrtc/base/ |
macasyncsocket.cc | 393 const UInt8* bytes = reinterpret_cast<UInt8*>(&saddr); local 396 bytes, len);
|
/external/chromium_org/third_party/webrtc/modules/pacing/ |
paced_sender.cc | 51 bytes(length_in_bytes), 57 int bytes; member in struct:webrtc::paced_sender::Packet 107 int bytes = target_rate_kbps_ * delta_time_ms / 8; local 110 bytes_remaining_ = bytes_remaining_ + bytes; 113 bytes_remaining_ = bytes; 117 void UseBudget(int bytes) { 118 bytes_remaining_ = std::max(bytes_remaining_ - bytes, 183 uint16_t sequence_number, int64_t capture_time_ms, int bytes, 215 bytes, 331 // All bytes consumed for this interval [all...] |
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/ |
rtp_format_vp8.cc | 314 int bytes = WriteHeaderAndPayload(packet_info, buffer, max_payload_len_); local 315 if (bytes < 0) { 318 *bytes_to_send = bytes; 362 // Number of bytes in this fragment:
|
/external/chromium_org/third_party/webrtc/test/channel_transport/ |
udp_socket2_manager_win.h | 44 int bytes; member in struct:webrtc::test::PerIoContext
|
/external/chromium_org/ui/base/dragdrop/ |
os_exchange_data_provider_aurax11.cc | 213 std::vector<unsigned char> bytes; local 214 bytes.insert(bytes.end(), data, data + pickle.size()); 216 base::RefCountedBytes::TakeVector(&bytes)); 334 // only refers to the bytes in |data|. The assignment copies the data. 457 std::vector<unsigned char> bytes; local 458 // Manually jam a UTF16 BOM into bytes because otherwise, other programs will 460 bytes.push_back(0xFF); 461 bytes.push_back(0xFE); 462 ui::AddString16ToVector(html, &bytes); [all...] |
/external/chromium_org/v8/src/compiler/ |
pipeline.cc | 54 size_t bytes = info_->zone()->allocation_size() - size_; local 56 stats->SaveTiming(name_, delta, static_cast<int>(bytes));
|
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/ |
CstString.java | 36 /** {@code non-null;} the UTF-8 value as bytes */ 37 private final ByteArray bytes; field in class:CstString 44 * @return {@code non-null;} the UTF-8 bytes for it 48 byte[] bytes = new byte[len * 3]; // Avoid having to reallocate. 54 bytes[outAt] = (byte) c; 57 bytes[outAt] = (byte) (((c >> 6) & 0x1f) | 0xc0); 58 bytes[outAt + 1] = (byte) ((c & 0x3f) | 0x80); 61 bytes[outAt] = (byte) (((c >> 12) & 0x0f) | 0xe0); 62 bytes[outAt + 1] = (byte) (((c >> 6) & 0x3f) | 0x80); 63 bytes[outAt + 2] = (byte) ((c & 0x3f) | 0x80) [all...] |
/external/dhcpcd/ |
if-bsd.c | 316 ssize_t bytes; local 339 bytes = read(fd, link_buf, link_buflen); 340 if (bytes == -1) { 347 e = link_buf + bytes;
|
if-linux.c | 153 ssize_t buflen = 0, bytes; local 158 bytes = recv(fd, NULL, 0, 160 if (bytes == -1) { 168 } else if (bytes == buflen) { 170 if (bytes == 0) 171 bytes = 512; 173 bytes *= 2; 175 if (buflen < bytes) { 177 buflen = bytes + 1; 183 bytes = recv(fd, buf, buflen, flags) [all...] |
showlease.c | 130 ssize_t bytes; local 137 bytes = read(fd, dhcp, sizeof(*dhcp)); 139 if (bytes < 0) {
|
/external/e2fsprogs/e2fsck/ |
ea_refcount.c | 52 size_t bytes; local 62 bytes = (size_t) (size * sizeof(struct ea_refcount_el)); 64 printf("Refcount allocated %d entries, %d bytes.\n", 65 refcount->size, bytes); 67 retval = ext2fs_get_mem(bytes, &refcount->list); 70 memset(refcount->list, 0, bytes);
|
/external/fio/engines/ |
windowsaio.c | 371 DWORD bytes; local 377 if (!GetQueuedCompletionStatus(ctx->iocp, &bytes, &ulKey, &ovl, 250) && ovl == NULL)
|
/external/flac/libFLAC/ |
bitwriter.c | 62 /* SWAP_BE_WORD_TO_HOST swaps bytes in a bwword (which is always big-endian) if necessary to match host byte order */ 237 size_t bytes; local 241 if(!FLAC__bitwriter_get_buffer(bw, &buffer, &bytes)) 244 *crc = (FLAC__uint16)FLAC__crc16(buffer, bytes); 252 size_t bytes; local 256 if(!FLAC__bitwriter_get_buffer(bw, &buffer, &bytes)) 259 *crc = FLAC__crc8(buffer, bytes); 274 FLAC__bool FLAC__bitwriter_get_buffer(FLAC__BitWriter *bw, const FLAC__byte **buffer, size_t *bytes) 290 *bytes = (FLAC__BYTES_PER_WORD * bw->words) + (bw->bits >> 3);
|
/external/freetype/src/pshinter/ |
pshrec.h | 102 FT_Byte* bytes; member in struct:PS_MaskRec_
|
/external/harfbuzz_ng/test/api/ |
test-buffer.c | 374 unsigned int bytes, chars, i, j, len; local 388 bytes = strlen (test->utf8); 393 hb_buffer_add_utf8 (b, test->utf8, bytes, 1, bytes - 2); 466 /* continuation bytes */ 604 /* missing continuation bytes */ 615 /* impossible bytes */
|
/external/icu/icu4c/source/common/ |
ucnv_u16.c | 112 /* copy an even number of bytes for complete UChars */ 183 length=2; /* 2 bytes to output */ 196 length=0; /* from here on, length counts the bytes in overflow[] */ 215 length=4; /* 4 bytes to output */ 232 /* output length bytes with overflow (length>targetCapacity>0) */ 317 /* continue collecting bytes for the trail surrogate */ 356 * used for the lead unit's bytes 374 /* copy an even number of bytes for complete UChars */ 536 /* too few (2 or 3) bytes for a surrogate pair: truncated code point */ 537 uint8_t *bytes=pArgs->converter->toUBytes local 554 uint8_t *bytes=pArgs->converter->toUBytes; local 1136 uint8_t *bytes=pArgs->converter->toUBytes; local 1153 uint8_t *bytes=pArgs->converter->toUBytes; local [all...] |
ucnv_u7.c | 214 uint8_t *bytes; local 244 bytes=cnv->toUBytes; 271 bytes[0]=b; 304 * base64 bytes, while nextSourceIndex is precisely parallel to source, 310 bytes[byteIndex++]=b=*source++; 332 bytes[0]=PLUS; 357 /* collect base64 bytes into UChars */ 377 bytes[0]=b; /* keep this byte in case an error occurs */ 388 bytes[0]=b; /* keep this byte in case an error occurs */ 587 * Output 2 or 3 base64 bytes for the remaining bits of the previous characte 896 uint8_t *bytes; local [all...] |
/external/icu/icu4c/source/common/unicode/ |
bytestrie.h | 55 * The BytesTrie object will not read more bytes than 106 State() { bytes=NULL; } 110 const uint8_t *bytes; member in class:BytesTrie::State 123 state.bytes=bytes_; 140 if(bytes_==state.bytes && bytes_!=NULL) { 233 * @return the number of bytes which continue the byte sequence from here 246 * @param trieBytes The trie bytes. 432 // encode match values or continue matching further bytes. 439 // - Linear-match node: Matches a number of bytes. 441 // The node byte is the length of the branch (number of bytes to select from [all...] |
/external/icu/icu4c/source/i18n/ |
collationkeys.cpp | 28 SortKeyByteSink::Append(const char *bytes, int32_t n) { 29 if (n <= 0 || bytes == NULL) { 38 bytes += ignore_; 45 if ((buffer_ + length) == bytes) { 46 return; // the caller used GetAppendBuffer() and wrote the bytes already 50 uprv_memcpy(buffer_ + length, bytes, n); 52 AppendBeyondCapacity(bytes, n, length); 67 // Do not write ignored bytes right at the end of the buffer. 148 uint8_t bytes[4] = { (uint8_t)(w >> 24), (uint8_t)(w >> 16), (uint8_t)(w >> 8), (uint8_t)w }; local 149 int32_t appendLength = (bytes[1] == 0) ? 1 : (bytes[2] == 0) ? 2 : (bytes[3] == 0) ? 3 : 4 [all...] |
/external/icu/icu4c/source/test/cintltst/ |
ucsdetst.c | 75 char *bytes = NEW_ARRAY(char, byteCount + 1); local 76 char *dest = bytes, *destLimit = bytes + byteCount + 1; 82 return bytes; 85 static void freeBytes(char *bytes) 87 DELETE_ARRAY(bytes); 125 char *bytes; local 131 bytes = extractBytes(s, sLength, "UTF-8", &byteLength); 133 ucsdet_setText(csd, bytes, byteLength, &status); 155 freeBytes(bytes); 287 char *bytes; local 475 char *bytes = extractBytes(chars, cLength, "IBM424", &bLength); local 553 char *bytes = extractBytes(chars, cLength, "IBM420", &bLength); local [all...] |
/external/icu/icu4c/source/test/intltest/ |
tscoll.cpp | 368 const uint8_t *bytes = source.getByteArray(byteCount); local 378 appendHex(bytes[i], 2, target);
|
uobjtest.cpp | 510 char *bytes = stackMemory.bytes_; local 514 p=new(bytes) UnicodeString(len, (UChar32)0x20ac, len); 515 if((void *)p!=(void *)bytes) { 556 UnicodeString::operator delete(p, bytes);
|
/external/icu/icu4c/source/tools/toolutil/ |
ucm.h | 41 * b if bLen<=4: up to 4 bytes 42 * else index to bLen bytes 44 * bLen number of words containing left-justified bytes 45 * bIsMultipleChars indicates that the bytes contain more than one sequence 55 uint8_t bytes[4]; member in union:UCMapping::__anon26853 75 uint8_t *bytes; member in struct:UCMTable 78 /* index map for mapping by bytes first */ 115 (((m)->bLen<=4) ? (m)->b.bytes : (t)->bytes+(m)->b.idx) 129 /* @return -1 illegal bytes 0 suitable for base table 1 needs to go into extension table * [all...] |
/external/kernel-headers/original/uapi/drm/ |
omap_drm.h | 52 uint32_t bytes; /* (for non-tiled formats) */ member in union:omap_gem_size
|