HomeSort by relevance Sort by last modified time
    Searched refs:borrow (Results 26 - 50 of 56) sorted by null

12 3

  /external/python/cpython2/Objects/
longobject.c 1236 digit borrow = 0; local
2471 digit borrow = 0; local
    [all...]
  /external/llvm/lib/Support/
APInt.cpp 211 /// @returns the borrow out of the subtraction
217 y = 1; // We have to "borrow 1" from next "digit"
219 y = 0; // No need to borrow
264 /// @returns returns the borrow out.
268 bool borrow = false;
270 uint64_t x_tmp = borrow ? x[i] - 1 : x[i];
271 borrow = y[i] > x_tmp || (borrow && x[i] == 0);
274 return borrow;
1595 int64_t borrow = 0; local
1602 << ", borrow = " << borrow << '\\n'); local
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
APInt.cpp 211 /// @returns the borrow out of the subtraction
217 y = 1; // We have to "borrow 1" from next "digit"
219 y = 0; // No need to borrow
272 /// @returns returns the borrow out.
276 bool borrow = false;
278 uint64_t x_tmp = borrow ? x[i] - 1 : x[i];
279 borrow = y[i] > x_tmp || (borrow && x[i] == 0);
282 return borrow;
1569 int64_t borrow = 0; local
1576 << ", borrow = " << borrow << '\\n'); local
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
strtodg.c 103 ULong borrow = 1, y; local
119 y = *x - borrow;
120 borrow = (y & 0x10000) >> 16;
122 } while(borrow && x < xe);
  /device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/
strtodg.c 115 ULong borrow = 1, y; local
131 y = *x - borrow;
132 borrow = (y & 0x10000) >> 16;
134 } while(borrow && x < xe);
  /external/swiftshader/third_party/LLVM/lib/Support/
APInt.cpp 208 /// @returns the borrow out of the subtraction
214 y = 1; // We have to "borrow 1" from next "digit"
216 y = 0; // No need to borrow
261 /// @returns returns the borrow out.
265 bool borrow = false;
267 uint64_t x_tmp = borrow ? x[i] - 1 : x[i];
268 borrow = y[i] > x_tmp || (borrow && x[i] == 0);
271 return borrow;
    [all...]
APFloat.cpp 852 /* Subtract the significand of the RHS with a borrow flag. Returns
853 the borrow flag. */
855 APFloat::subtractSignificand(const APFloat &rhs, integerPart borrow)
864 return APInt::tcSubtract(parts, rhs.significandParts(), borrow,
    [all...]
  /external/mesa3d/src/compiler/glsl/
ir_builder.h 139 ir_expression *borrow(operand a, operand b);
ir_builder.cpp 244 ir_expression *borrow(operand a, operand b) function in namespace:ir_builder
  /prebuilts/go/darwin-x86/test/
64bit.go 111 var borrow uint32
113 borrow = 1
115 c.hi = a.hi - b.hi - borrow
  /prebuilts/go/linux-x86/test/
64bit.go 111 var borrow uint32
113 borrow = 1
115 c.hi = a.hi - b.hi - borrow
  /frameworks/native/libs/vr/libbufferhub/include/private/dvr/
bufferhub_rpc.h 174 acquire_fence_fd_(acquire_fence_fd.Borrow()),
175 release_fence_fd_(release_fence_fd.Borrow()) {}
233 FenceHandle<pdx::BorrowedHandle> borrow() const { function in class:android::dvr::FenceHandle
234 return FenceHandle<pdx::BorrowedHandle>(fence_.Borrow());
  /external/boringssl/src/crypto/fipsmodule/bn/asm/
armv8-mont.pl 232 subs $j,$num,#8 // j=num-1 and clear borrow
243 sbcs $ovf,$ovf,xzr // did it borrow?
253 csel $nj,$tj,$aj,lo // did it borrow?
958 sbcs xzr,$topmost,xzr // did it borrow?
1017 sbcs $carry,$carry,xzr // did it borrow?
    [all...]
armv4-mont.pl 253 mov $ap,$tp @ "borrow" $ap
269 orr $ap,$ap,$np @ ap=borrow?tp:rp
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/gen/
386Ops.go 188 {name: "SUBLcarry", argLength: 2, reg: gp21carry, asm: "SUBL", resultInArg0: true}, // arg0-arg1, generates <borrow,result> pair
189 {name: "SUBLconstcarry", argLength: 1, reg: gp11carry, asm: "SUBL", aux: "Int32", resultInArg0: true}, // arg0-auxint, generates <borrow,result> pair
190 {name: "SBBL", argLength: 3, reg: gp2carry1, asm: "SBBL", resultInArg0: true, clobberFlags: true}, // arg0-arg1-borrow(arg2), where arg2 is flags
191 {name: "SBBLconst", argLength: 2, reg: gp1carry1, asm: "SBBL", aux: "Int32", resultInArg0: true, clobberFlags: true}, // arg0-auxint-borrow(arg1), where arg1 is flags
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/gen/
386Ops.go 188 {name: "SUBLcarry", argLength: 2, reg: gp21carry, asm: "SUBL", resultInArg0: true}, // arg0-arg1, generates <borrow,result> pair
189 {name: "SUBLconstcarry", argLength: 1, reg: gp11carry, asm: "SUBL", aux: "Int32", resultInArg0: true}, // arg0-auxint, generates <borrow,result> pair
190 {name: "SBBL", argLength: 3, reg: gp2carry1, asm: "SBBL", resultInArg0: true, clobberFlags: true}, // arg0-arg1-borrow(arg2), where arg2 is flags
191 {name: "SBBLconst", argLength: 2, reg: gp1carry1, asm: "SBBL", aux: "Int32", resultInArg0: true, clobberFlags: true}, // arg0-auxint-borrow(arg1), where arg1 is flags
  /external/boringssl/ios-arm/crypto/fipsmodule/
armv4-mont.S 157 mov r1,r4 @ "borrow" r1
173 orr r1,r1,r3 @ ap=borrow?tp:rp
bsaes-armv7.S 1389 add r8, r6, #LREVM0SR-LM0 @ borrow r8
1409 adrl r8, LREVM0SR @ borrow r8
1435 @ Borrow prologue from _bsaes_encrypt8 to use the opportunity
    [all...]
  /external/boringssl/linux-arm/crypto/fipsmodule/
armv4-mont.S 156 mov r1,r4 @ "borrow" r1
172 orr r1,r1,r3 @ ap=borrow?tp:rp
bsaes-armv7.S 1380 add r8, r6, #.LREVM0SR-.LM0 @ borrow r8
1400 adrl r8, .LREVM0SR @ borrow r8
1426 @ Borrow prologue from _bsaes_encrypt8 to use the opportunity
    [all...]
  /external/valgrind/coregrind/
m_main.c 3240 Int q, uneg, vneg, diff, borrow; local
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/x86/
ssa.go 174 // output 0 is carry/borrow, output 1 is the low 32 bits.
182 // output 0 is carry/borrow, output 1 is the low 32 bits.
  /prebuilts/go/linux-x86/src/cmd/compile/internal/x86/
ssa.go 174 // output 0 is carry/borrow, output 1 is the low 32 bits.
182 // output 0 is carry/borrow, output 1 is the low 32 bits.
  /external/valgrind/VEX/priv/
guest_x86_helpers.c 2128 Bool borrow = r_AL < 6; local
    [all...]
host_mips_isel.c 2403 HReg xLo, xHi, yLo, yHi, borrow; local
    [all...]

Completed in 847 milliseconds

12 3