HomeSort by relevance Sort by last modified time
    Searched defs:bytes (Results 526 - 550 of 1804) sorted by null

<<21222324252627282930>>

  /external/chromium_org/third_party/icu/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::__anon17048
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/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
peer_connection_client.cc 316 int bytes = socket->Recv(buffer, sizeof(buffer)); local
317 if (bytes <= 0)
319 data->append(buffer, bytes);
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/server/
data_socket.cc 106 int bytes = recv(socket_, buffer, sizeof(buffer), 0); local
107 if (bytes == SOCKET_ERROR || bytes == 0) {
120 data_.append(buffer, bytes);
123 request_headers_.append(buffer, bytes);
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
xmppclient.cc 94 void WriteOutput(const char* bytes, size_t len);
365 char bytes[4096]; local
374 if (!socket_->Read(bytes, sizeof(bytes), &bytes_read)) {
383 client_->SignalLogInput(bytes, static_cast<int>(bytes_read));
386 engine_->HandleInput(bytes, bytes_read);
405 void XmppClient::Private::WriteOutput(const char* bytes, size_t len) {
407 client_->SignalLogOutput(bytes, static_cast<int>(len));
410 socket_->Write(bytes, len);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_debug.c 905 unsigned long bytes = (unsigned long) (end - start) * 4; local
917 debug_printf( "\n\nBATCH: (%d)\n", (int)bytes / 4);
920 stream.offset < bytes)
925 assert(stream.offset <= bytes &&
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_setup_point.c 323 unsigned bytes; local
360 &bytes);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
nvc0_transfer.c 279 unsigned bytes = MIN2(size, 1 << 17); local
288 PUSH_DATA (push, bytes);
294 srcoff += bytes;
295 dstoff += bytes;
296 size -= bytes;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/MCTargetDesc/
SIMCCodeEmitter.cpp 111 ///getEncodingBytes - Get then size in bytes of this instructions encoding.
134 unsigned bytes = getEncodingBytes(MI); local
135 for (unsigned i = 0; i < bytes; i++) {
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
i915_debug.c 820 GLuint bytes = (end - start) * 4; local
823 printf("\n\nBATCH: (%d)\n", bytes / 4);
830 stream.offset < bytes &&
836 assert(stream.offset <= bytes &&
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
uniform_query.cpp 294 unsigned bytes = sizeof(src[0]) * elements; local
295 if (bufSize < 0 || bytes > (unsigned) bufSize) {
298 " but %u bytes are required)", bufSize, bytes );
314 memcpy(paramsOut, src, bytes);
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_blend.c 76 GLint bytes; local
86 bytes = 4 * n * sizeof(GLubyte);
88 bytes = 4 * n * sizeof(GLushort);
90 bytes = 4 * n * sizeof(GLfloat);
92 memcpy(src, dst, bytes);
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
coded_stream_unittest.cc 127 // Helper method used by tests for bytes warning. See implementation comment
151 uint8 bytes[10]; // Encoded bytes. member in struct:google::protobuf::io::__anon19458::VarintCase
152 int size; // Encoded size, in bytes.
186 memcpy(buffer_, kVarintCases_case.bytes, kVarintCases_case.size);
201 memcpy(buffer_, kVarintCases_case.bytes, kVarintCases_case.size);
248 memcpy(buffer_ + 1, kVarintCases_case.bytes, kVarintCases_case.size);
279 memcpy(buffer_, kVarintCases_case.bytes, kVarintCases_case.size);
297 memcpy(buffer_, kVarintCases_case.bytes, kVarintCases_case.size);
330 memcmp(buffer_, kVarintCases_case.bytes, kVarintCases_case.size))
403 uint8 bytes[12]; member in struct:google::protobuf::io::__anon19458::VarintErrorCase
494 uint8 bytes[sizeof(uint32)]; \/\/ Encoded bytes. member in struct:google::protobuf::io::__anon19458::Fixed32Case
499 uint8 bytes[sizeof(uint64)]; \/\/ Encoded bytes. member in struct:google::protobuf::io::__anon19458::Fixed64Case
    [all...]
zero_copy_stream_impl.cc 243 int bytes; local
245 bytes = write(file_, buffer_base + total_written, size - total_written);
246 } while (bytes < 0 && errno == EINTR);
248 if (bytes <= 0) {
259 if (bytes < 0) {
264 total_written += bytes;
388 // Hit the end of the stream. Figure out how many more bytes we still have
  /external/chromium_org/third_party/skia/experimental/Networking/
SkSockets.h 46 * to be sent and dataSize specifies the number of bytes to send. This
49 * socket's open connections until all the bytes have been successfully sent
50 * and return total the number of bytes written to all clients, unless there
64 * packets if necessary) and return the number of bytes successfully read,
96 int bytes; member in struct:SkSocket::header
  /external/chromium_org/third_party/skia/include/core/
SkTDArray.h 111 * return the number of bytes in the array: count * sizeof(T)
113 size_t bytes() const { return fCount * sizeof(T); } function in class:SkTDArray
  /external/chromium_org/third_party/skia/src/gpu/
GrBufferAllocPool.cpp 150 size_t bytes = fBlocks[i].fBuffer->gpuMemorySize() - fBlocks[i].fBytesFree; local
151 bytesInUse += bytes;
152 SkASSERT(bytes || unusedBlockAllowed);
233 void GrBufferAllocPool::putBack(size_t bytes) {
242 while (bytes) {
247 if (bytes >= bytesUsed) {
248 bytes -= bytesUsed;
257 block.fBytesFree += bytes;
258 fBytesInUse -= bytes;
259 bytes = 0
    [all...]
GrGpu.cpp 463 size_t bytes = geoSrc.fVertexCount * geoSrc.fVertexSize; local
464 fVertexPool->putBack(bytes);
471 size_t bytes = geoSrc.fIndexCount * sizeof(uint16_t); local
472 fIndexPool->putBack(bytes);
509 size_t bytes = geoSrc.fVertexCount * geoSrc.fVertexSize; local
510 fVertexPool->putBack(bytes);
518 size_t bytes = geoSrc.fIndexCount * sizeof(uint16_t); local
519 fIndexPool->putBack(bytes);
GrResourceCache.cpp 458 size_t bytes = 0; local
466 bytes += entry->resource()->gpuMemorySize();
468 return bytes;
471 static bool both_zero_or_nonzero(int count, size_t bytes) {
472 return (count == 0 && bytes == 0) || (count > 0 && bytes > 0);
505 size_t bytes = countBytes(fList); local
506 SkASSERT(bytes == fEntryBytes - fClientDetachedBytes);
508 bytes = countBytes(fExclusiveList);
509 SkASSERT(bytes == fClientDetachedBytes)
    [all...]
  /external/chromium_org/third_party/skia/tools/
bench_pictures_main.cpp 237 size_t bytes = pool->getRAMUsed(); local
238 if (bytes > 1024) {
239 size_t kb = bytes / 1024;
247 ramCount.appendf("%zi bytes\n", bytes);
image_expectations.cpp 249 const char *bytes = reinterpret_cast<const char *>(dataRef.get()->data()); local
252 if (!reader.parse(bytes, bytes+size, *jsonRoot)) {
  /external/chromium_org/third_party/smhasher/src/
Bitvec.cpp 675 uint8_t bytes[nbits/8]; member in struct:keytype
Types.h 198 for(size_t i = 0; i < sizeof(bytes); i++)
200 bytes[i] = 0;
206 for(size_t i = 0; i < sizeof(bytes); i++)
208 bytes[i] = 0;
211 *(int*)bytes = x;
216 for(size_t i = 0; i < sizeof(bytes); i++)
218 bytes[i] = k.bytes[i];
224 for(size_t i = 0; i < sizeof(bytes); i++)
226 bytes[i] = k.bytes[i]
368 uint8_t bytes[(_bits+7)\/8]; member in class:Blob
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
test_thread.c 511 int nSql, /* Length of zSql in bytes. */
552 ** Usage: sqlite3_blocking_prepare_v2 DB sql bytes ?tailvar?
553 ** Usage: sqlite3_nonblocking_prepare_v2 DB sql bytes ?tailvar?
563 int bytes; local
572 Tcl_GetString(objv[0]), " DB sql bytes tailvar", 0);
577 if( Tcl_GetIntFromObj(interp, objv[3], &bytes) ) return TCL_ERROR;
580 rc = sqlite3_blocking_prepare_v2(db, zSql, bytes, &pStmt, &zTail);
582 rc = sqlite3_prepare_v2(db, zSql, bytes, &pStmt, &zTail);
587 if( bytes>=0 ){
588 bytes = bytes - (zTail-zSql)
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/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/tcmalloc/vendor/src/
heap-profile-table.h 109 // Record an allocation at 'ptr' of 'bytes' bytes. 'stack_depth'
112 void RecordAlloc(const void* ptr, size_t bytes,
166 // of currently allocated bytes.
221 size_t bytes; // Number of bytes in this allocation member in struct:HeapProfileTable::AllocValue
246 static size_t AllocValueSize(const AllocValue& v) { return v.bytes; }
295 info.object_size = v->bytes;
410 total_.alloc_size += v.bytes;

Completed in 2097 milliseconds

<<21222324252627282930>>