Searched defs:waste (Results 1 - 6 of 6) sorted by relevance

/external/regex-re2/util/
H A Darena.cc55 const int waste = kDefaultAlignment - overage; local
56 freestart_ += waste;
57 remaining_ -= waste;
120 const int waste = align - overage; local
121 freestart_ += waste;
122 if (waste < remaining_) {
123 remaining_ -= waste;
/external/boringssl/src/crypto/bn/asm/
H A Dx86_64-gcc.c190 BN_ULONG ret, waste; local
192 asm("divq %4" : "=a"(ret), "=d"(waste) : "a"(l), "d"(h), "g"(d) : "cc");
/external/libdrm/amdgpu/
H A Damdgpu_vamgr.c73 uint64_t offset = 0, waste = 0; local
89 waste = base_required - hole->offset;
93 waste = offset % alignment;
94 waste = waste ? alignment - waste : 0;
95 offset += waste;
100 if (!waste && hole->size == size) {
107 if ((hole->size - waste) > size) {
108 if (waste) {
[all...]
/external/mesa3d/src/gallium/winsys/radeon/drm/
H A Dradeon_drm_bo.c202 uint64_t offset = 0, waste = 0; local
208 waste = 0;
210 waste = offset % alignment;
211 waste = waste ? alignment - waste : 0;
213 offset += waste;
217 if (!waste && hole->size == size) {
224 if ((hole->size - waste) > size) {
225 if (waste) {
[all...]
/external/dbus/dbus/
H A Ddbus-string.c260 int waste; local
262 waste = real->allocated - (real->len + _DBUS_STRING_ALLOCATION_PADDING);
264 if (waste <= max_waste)
360 * waste is ignored and the call does nothing).
363 * @param max_waste the maximum amount of waste to ignore
/external/v8/src/heap/
H A Dspaces.h970 void add_wasted_memory(intptr_t waste) { wasted_memory_.Increment(waste); } argument
1813 // divided up into rough categories to cut down on waste. Having finer
2233 // the free list or accounted as waste.

Completed in 133 milliseconds