/bionic/libc/upstream-openbsd/lib/libc/gdtoa/ |
dmisc.c | 120 ULLong borrow, carry, y, ys; local 122 ULong borrow, carry, y, ys; local 145 borrow = 0; 151 y = *bx - (ys & 0xffffffffUL) - borrow; 152 borrow = y >> 32 & 1UL; 160 y = (*bx & 0xffff) - (ys & 0xffff) - borrow; 161 borrow = (y & 0x10000) >> 16; 162 z = (*bx >> 16) - (zs & 0xffff) - borrow; 163 borrow = (z & 0x10000) >> 16; 168 y = *bx - (ys & 0xffff) - borrow; [all...] |
misc.c | 559 ULLong borrow, y; local 561 ULong borrow, y; local 595 borrow = 0; 598 y = (ULLong)*xa++ - *xb++ - borrow; 599 borrow = y >> 32 & 1UL; 604 y = *xa++ - borrow; 605 borrow = y >> 32 & 1UL; 611 y = (*xa & 0xffff) - (*xb & 0xffff) - borrow; 612 borrow = (y & 0x10000) >> 16; 613 z = (*xa++ >> 16) - (*xb++ >> 16) - borrow; [all...] |
/device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/ |
dmisc.c | 119 ULLong borrow, carry, y, ys;
local 121 ULong borrow, carry, y, ys;
local 144 borrow = 0;
151 y = *bx - (ys & 0xffffffffUL) - borrow;
152 borrow = y >> 32 & 1UL;
161 y = (*bx & 0xffff) - (ys & 0xffff) - borrow;
162 borrow = (y & 0x10000) >> 16;
163 z = (*bx >> 16) - (zs & 0xffff) - borrow;
164 borrow = (z & 0x10000) >> 16;
169 y = *bx - (ys & 0xffff) - borrow;
[all...] |
misc.c | 559 ULLong borrow, y;
local 561 ULong borrow, y;
local 595 borrow = 0;
598 y = (ULLong)*xa++ - *xb++ - borrow;
599 borrow = y >> 32 & 1UL;
605 y = *xa++ - borrow;
606 borrow = y >> 32 & 1UL;
613 y = (*xa & 0xffff) - (*xb & 0xffff) - borrow;
614 borrow = (y & 0x10000) >> 16;
615 z = (*xa++ >> 16) - (*xb++ >> 16) - borrow;
[all...] |
/frameworks/native/libs/vr/libpdx_uds/private/uds/ |
channel_event_set.h | 20 BorrowedHandle pollin_event_fd() const { return pollin_event_fd_.Borrow(); } 21 BorrowedHandle pollhup_event_fd() const { return pollhup_event_fd_.Borrow(); } 51 BorrowedHandle event_fd() const { return epoll_fd_.Borrow(); } 53 BorrowedHandle pollin_event_fd() const { return pollin_event_fd_.Borrow(); } 54 BorrowedHandle pollhup_event_fd() const { return pollhup_event_fd_.Borrow(); } 55 BorrowedHandle data_fd() const { return data_fd_.Borrow(); }
|
/external/tpm2/ |
MathFunctions.c | 91 // 1 if (a > b) so no borrow 92 // 0 if (a = b) so no borrow and b == a 93 // -1 if (a < b) so there was a borrow 105 int borrow = 0; local 119 borrow = *a-- - *b-- + borrow; 120 *c-- = (BYTE)borrow; 121 notZero = notZero || borrow; 122 borrow >>= 8; 128 borrow = *a-- + borrow 352 int borrow = 0; local [all...] |
/external/libconstrainedcrypto/ |
p256.c | 93 p256_sddigit borrow = 0; local 96 borrow += *c; 97 borrow -= *a++; 98 *c++ = (p256_digit)borrow; 99 borrow >>= P256_BITSPERDIGIT; 101 borrow += top_c; 102 borrow -= top_a; 103 top_c = (p256_digit)borrow; 104 assert((borrow >> P256_BITSPERDIGIT) == 0); 115 p256_sddigit borrow = 0 local 238 p256_sddigit borrow = 0; local 254 p256_sddigit borrow = 0; local [all...] |
/external/skia/include/core/ |
SkExecutor.h | 30 virtual void borrow() {} function in class:SkExecutor
|
/external/skqp/include/core/ |
SkExecutor.h | 30 virtual void borrow() {} function in class:SkExecutor
|
/external/vulkan-validation-layers/libs/glm/detail/ |
func_integer.inl | 107 uint & Borrow 112 Borrow = x >= y ? static_cast<uint32>(0) : static_cast<uint32>(1); 124 uvec2 & Borrow 128 usubBorrow(x[0], y[0], Borrow[0]), 129 usubBorrow(x[1], y[1], Borrow[1])); 137 uvec3 & Borrow 141 usubBorrow(x[0], y[0], Borrow[0]), 142 usubBorrow(x[1], y[1], Borrow[1]), 143 usubBorrow(x[2], y[2], Borrow[2])); 151 uvec4 & Borrow [all...] |
/prebuilts/ndk/r16/sources/third_party/vulkan/src/libs/glm/detail/ |
func_integer.inl | 107 uint & Borrow 112 Borrow = x >= y ? static_cast<uint32>(0) : static_cast<uint32>(1); 124 uvec2 & Borrow 128 usubBorrow(x[0], y[0], Borrow[0]), 129 usubBorrow(x[1], y[1], Borrow[1])); 137 uvec3 & Borrow 141 usubBorrow(x[0], y[0], Borrow[0]), 142 usubBorrow(x[1], y[1], Borrow[1]), 143 usubBorrow(x[2], y[2], Borrow[2])); 151 uvec4 & Borrow [all...] |
/external/v8/src/ |
bignum.cc | 201 Chunk borrow = 0; local 204 DCHECK((borrow == 0) || (borrow == 1)); 205 Chunk difference = bigits_[i + offset] - other.bigits_[i] - borrow; 207 borrow = difference >> (kChunkSize - 1); 209 while (borrow != 0) { 210 Chunk difference = bigits_[i + offset] - borrow; 212 borrow = difference >> (kChunkSize - 1); 623 Chunk borrow = 0; 631 if (sum > chunk_c + borrow) { [all...] |
/external/python/cpython3/Modules/_decimal/libmpdec/ |
basearith.c | 165 mpd_uint_t borrow = 0; local 172 d = u[i] - (v[i] + borrow); 173 borrow = (u[i] < d); 174 w[i] = borrow ? d + MPD_RADIX : d; 176 /* if there is a borrow, propagate it */ 177 for (; borrow && i < m; i++) { 178 d = u[i] - borrow; 179 borrow = (u[i] == 0); 180 w[i] = borrow ? MPD_RADIX-1 : d; 190 * propagated further, but eventually w can absorb the final borrow 196 mpd_uint_t borrow = 0; local [all...] |
/external/mesa3d/prebuilt-intermediates/glsl/ |
ir_expression_operation_strings.h | 104 "borrow", 220 "borrow",
|
/external/autotest/client/tests/tracing_microbenchmark/src/ |
getuid_microbench.c | 15 /* borrow a second */
|
/external/clang/test/Index/ |
comment-cplus11-specific.cpp | 13 namespace borrow { namespace
|
/external/skia/src/core/ |
SkTaskGroup.cpp | 42 fExecutor.borrow();
|
/external/skqp/src/core/ |
SkTaskGroup.cpp | 42 fExecutor.borrow();
|
/system/bt/stack/smp/ |
p_256_multprecision.cc | 98 uint32_t borrow; local 101 borrow = 0; 103 temp = a[i] - borrow; 104 borrow = (temp > a[i]); 106 borrow |= (c[i] > temp); 109 return borrow; 192 uint32_t borrow; local 202 borrow = multiprecision_sub(c, a, b, keyLength); 203 if (borrow) multiprecision_add(c, c, modp, keyLength);
|
/external/iproute2/examples/diffserv/ |
efcbq | 26 "maxburst 21 borrow split 2:0 defmap 0xffff \n";
|
/external/perfetto/src/traced/probes/filesystem/ |
lru_inode_cache.cc | 28 // We can borrow both elements of the pair stored in the list because
|
/external/skia/include/gpu/vk/ |
GrVkTypes.h | 50 VkDeviceSize fSize; // this can be indeterminate iff Tex uses borrow semantics
|
/external/skqp/include/gpu/vk/ |
GrVkTypes.h | 50 VkDeviceSize fSize; // this can be indeterminate iff Tex uses borrow semantics
|
/frameworks/native/libs/vr/libpdx_uds/ |
client_channel_factory.cpp | 127 status = ReceiveData(socket_.Borrow(), &connection_info); 143 status = SendData(socket_.Borrow(), request); 148 status = ReceiveData(socket_.Borrow(), &response);
|
/external/boringssl/src/crypto/fipsmodule/modes/asm/ |
aesni-gcm-x86_64.pl | 90 vmovdqu 0x20($const),$T2 # borrow $T2, .Lone_msb 116 vmovups 0x10-0x80($key),$T2 # borrow $T2 for $rndkey 174 vmovdqu 0x30-0x20($Xip),$Z1 # borrow $Z1 for $Hkey^3 192 vmovdqu 0x40-0x20($Xip),$T1 # borrow $T1 for $Hkey^4 214 vmovdqu 0x60-0x20($Xip),$T2 # borrow $T2 for $Hkey^5 278 vmovups 0x80-0x80($key),$T1 # borrow $T1 for $rndkey 333 vmovdqu ($const),$Ii # borrow $Ii for .Lbswap_mask 335 vmovdqu 0x30($const),$Z1 # borrow $Z1, .Ltwo_lsb 373 vmovdqu 0x20($const),$T2 # borrow $T2, .Lone_msb 471 lea -0x80($key),$in0 # borrow $in [all...] |