Home
last modified time | relevance | path

Searched refs:new_bytes (Results 1 – 19 of 19) sorted by relevance

/external/ruy/ruy/
Dprepacked_cache.cc96 const int new_bytes = AllocateBuffers(packed_matrix); in Get() local
97 EjectUntilRoomFor(new_bytes); in Get()
100 buffers_bytes_ += new_bytes; in Get()
104 void PrepackedCache::EjectUntilRoomFor(int new_bytes) { in EjectUntilRoomFor() argument
107 while (!cache_.empty() && buffers_bytes_ + new_bytes > max_buffers_bytes_) { in EjectUntilRoomFor()
Dprepacked_cache.h131 void EjectUntilRoomFor(int new_bytes);
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dcudnn_pad_for_convolutions.cc247 int64 new_bytes = ShapeUtil::ByteSizeOf(new_shape); in TryResolvePaddedShapesForTensorCore() local
248 if (new_bytes <= old_bytes * kMaxBytesTouchedIncrease) { in TryResolvePaddedShapesForTensorCore()
256 << new_bytes / static_cast<double>(old_bytes) << "x > " in TryResolvePaddedShapesForTensorCore()
356 int64 new_bytes = ShapeUtil::ByteSizeOf(new_shape); in TryResolvePaddedShapesForIntegerConvolution() local
357 if (new_bytes <= old_bytes * kMaxBytesTouchedIncrease) { in TryResolvePaddedShapesForIntegerConvolution()
365 << new_bytes / static_cast<double>(old_bytes) << "x > " in TryResolvePaddedShapesForIntegerConvolution()
/external/rust/crates/grpcio-sys/grpc/third_party/upb/upb/
Dmsg.c75 size_t new_bytes; in _upb_array_realloc() local
81 new_bytes = new_size << elem_size_lg2; in _upb_array_realloc()
82 ptr = upb_arena_realloc(arena, ptr, old_bytes, new_bytes); in _upb_array_realloc()
Ddecode_fast.c192 size_t new_bytes = new_size * valbytes; in fastdecode_resizearr() local
194 char *new_ptr = upb_arena_realloc(&d->arena, old_ptr, old_bytes, new_bytes); in fastdecode_resizearr()
/external/llvm-project/lldb/examples/summaries/cocoa/
DCFString.py94 new_bytes = bytearray(content)
95 b0 = new_bytes[0]
96 b1 = new_bytes[1]
/external/llvm-project/lldb/packages/Python/lldbsuite/test/tools/lldb-server/
Dlldbgdbserverutils.py966 new_bytes = self._sock.recv(4096)
967 self._process_new_bytes(new_bytes)
970 def _process_new_bytes(self, new_bytes): argument
972 self._receive_buffer += new_bytes
/external/nanohttpd/core/src/main/java/fi/iki/elonen/
DNanoHTTPD.java917 int new_bytes = first_fill - boundary.length; in getBoundaryPositions() local
921 for (int j = 0; j < new_bytes; j++) { in getBoundaryPositions()
934 search_window_pos += new_bytes; in getBoundaryPositions()
940 new_bytes = search_window.length - boundary.length; in getBoundaryPositions()
941 new_bytes = (b.remaining() < new_bytes) ? b.remaining() : new_bytes; in getBoundaryPositions()
942 b.get(search_window, boundary.length, new_bytes); in getBoundaryPositions()
943 } while (new_bytes > 0); in getBoundaryPositions()
/external/llvm-project/lldb/source/Utility/
DEvent.cpp183 void EventDataBytes::SwapBytes(std::string &new_bytes) { in SwapBytes() argument
184 m_bytes.swap(new_bytes); in SwapBytes()
/external/freetype/src/cff/
Dcffload.c414 FT_Byte* new_bytes = NULL; in cff_index_get_pointers() local
431 ( !pool || !FT_ALLOC( new_bytes, new_size ) ) ) in cff_index_get_pointers()
453 tbl[0] = new_bytes + cur_offset; in cff_index_get_pointers()
470 tbl[n] = new_bytes + next_offset + extra; in cff_index_get_pointers()
488 *pool = new_bytes; in cff_index_get_pointers()
494 if ( error && new_bytes ) in cff_index_get_pointers()
495 FT_FREE( new_bytes ); in cff_index_get_pointers()
/external/llvm-project/lldb/include/lldb/Utility/
DEvent.h80 void SwapBytes(std::string &new_bytes);
/external/webrtc/api/transport/
Dstun.cc968 char* new_bytes = new char[length]; in CopyBytes() local
969 memcpy(new_bytes, bytes, length); in CopyBytes()
970 SetBytes(new_bytes, length); in CopyBytes()
/external/protobuf/src/google/protobuf/
Dwire_format_lite.h1163 const int new_bytes = new_entries * static_cast<int>(sizeof(CType)); in ReadPackedFixedSizePrimitive() local
1164 if (new_bytes != length) return false; in ReadPackedFixedSizePrimitive()
1185 if (bytes_limit >= new_bytes) { in ReadPackedFixedSizePrimitive()
1191 if (!input->ReadRaw(dest, new_bytes)) { in ReadPackedFixedSizePrimitive()
/external/protobuf/php/ext/google/protobuf/
Dupb.c670 size_t new_bytes; in upb_array_grow() local
680 new_bytes = new_size * arr->element_size; in upb_array_grow()
681 new_data = upb_realloc(alloc, arr->data, old_bytes, new_bytes); in upb_array_grow()
4135 size_t new_bytes = new_size * arr->element_size; in upb_array_set() local
4139 upb_realloc(alloc, arr->data, old_bytes, new_bytes); in upb_array_set()
Dupb.h811 size_t new_bytes; in _upb_array_resize_accessor() local
813 new_bytes = new_size * elem_size; in _upb_array_resize_accessor()
814 arr->data = upb_arena_realloc(arena, arr->data, old_bytes, new_bytes); in _upb_array_resize_accessor()
/external/protobuf/ruby/ext/google/protobuf_c/
Dupb.c666 size_t new_bytes; in upb_array_grow() local
676 new_bytes = new_size * arr->element_size; in upb_array_grow()
677 new_data = upb_realloc(alloc, arr->data, old_bytes, new_bytes); in upb_array_grow()
5001 size_t new_bytes = new_size * arr->element_size; in upb_array_set() local
5005 upb_realloc(alloc, arr->data, old_bytes, new_bytes); in upb_array_set()
Dupb.h6945 size_t new_bytes;
6948 new_bytes = new_size * elem_size;
6949 arr->data = upb_realloc(alloc, arr->data, old_bytes, new_bytes);
/external/freetype/
DChangeLog695 * src/cff/cffload.c (cff_index_get_pointers): When new_bytes fails
DChangeLog.245720 `new_bytes'.