HomeSort by relevance Sort by last modified time
    Searched full:carry (Results 126 - 150 of 2129) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/pdfium/third_party/bigint/
BigUnsigned.cc 164 // If a carry was input, handle it
170 carryIn = carryOut; // Pass the carry along
172 // If there is a carry left over, increase blocks until
179 // If the carry was resolved but the larger number
183 // Set the extra block if there's still a carry, decrease length otherwise
364 // Roll-over a carry as necessary.
664 bool carry = true; local
665 for (i = 0; i < len && carry; i++) {
667 carry = (blk[i] == 0);
669 if (carry) {
    [all...]
  /ndk/sources/android/support/src/stdio/
vfprintf.c 326 uint32_t carry=0; local
329 uint64_t x = ((uint64_t)*d<<sh)+carry;
331 carry = x / 1000000000;
334 if (carry) *--a = carry;
338 uint32_t carry=0, *b; local
342 *d = (*d>>sh) + carry;
343 carry = (1000000000>>sh) * rm;
346 if (carry) *z++ = carry;
    [all...]
  /external/boringssl/linux-arm/crypto/bn/
armv4-mont.S 144 subs r7,r7,r7 @ "clear" carry flag
149 teq r4,r0 @ preserve carry
151 sbcs r14,r14,#0 @ upmost carry
529 subs r1,sp,#0 @ clear carry flag
539 teq r1,r2 @ preserves carry
550 sbcs r10,r10,#0 @ result is carry flag
571 teq r1,r2 @ preserves carry
  /external/llvm/lib/Target/ARM/
ARMISelLowering.h 68 SRL_FLAG, // V,Flag = srl_flag X -> srl X, 1 + save carry out.
69 SRA_FLAG, // V,Flag = sra_flag X -> sra X, 1 + save carry out.
70 RRX, // V = RRX X, Flag -> srl X, 1 + shift in carry flag.
72 ADDC, // Add with carry
73 ADDE, // Add using carry
74 SUBC, // Sub with carry
75 SUBE, // Sub using carry
  /external/freetype/src/base/
fttrigon.c 105 /* Check carry overflow of i1 + i2 */
112 /* Check carry overflow of i1 + lo */
119 /* Check carry overflow of lo + 0x40000000 */
  /external/pdfium/third_party/freetype/src/base/
fttrigon.c 105 /* Check carry overflow of i1 + i2 */
112 /* Check carry overflow of i1 + lo */
119 /* Check carry overflow of lo + 0x40000000 */
  /bionic/libm/include/arm64/machine/
fenv.h 57 * * [29] - C, Carry conditon flag for AArch32 (AArch64 sets PSTATE.C);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_ceill.c 93 if (u.bits.manl < o) /* got a carry */
s_floorl.c 93 if (u.bits.manl < o) /* got a carry */
  /build/tools/
diff_package_overlays.py 27 from a full build to a partial build with mm/mmm), and we should carry on the
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/data/
VideoContentProvider.java 65 * When searching all of the video for matches, the selectionArgs argument must carry
  /developers/samples/android/connectivity/bluetooth/BluetoothChat/
template-params.xml 32 This application allows two Android devices to carry out two-way text chat over
  /development/ndk/platforms/android-21/arch-arm64/include/machine/
fenv.h 57 * * [29] - C, Carry conditon flag for AArch32 (AArch64 sets PSTATE.C);
  /development/samples/devbytes/graphics/BitmapAllocation/src/com/example/android/bitmapallocation/
BitmapAllocation.java 37 // There are some assumptions in this demo app that don't carry over well to the real world:
  /external/ceres-solver/internal/ceres/
block_structure.h 31 // Block structure objects are used to carry information about the
  /external/e2fsprogs/e2fsck/
dict.h 11 * derivative works, as long as the modified versions carry this copyright
  /external/libavc/encoder/
ih264e_cabac_structs.h 143 * These will be accumulated till the carry bit is knwon
  /external/libxml2/
xlink.c 140 * Check whether it's one of the element able to carry links
  /external/llvm/lib/Support/
BranchProbability.cpp 45 // Carry.
  /external/llvm/test/CodeGen/X86/
avoid_complex_am.ll 24 ; The induction variable should carry the scaling factor: 1.
  /external/mesa3d/src/gallium/state_trackers/xvmc/tests/
testlib.c 123 /* Perform the carry for the later subtraction by updating y. */
  /external/sonivox/arm-hybrid-22k/lib_src/
ARM-E_interpolate_loop_gnu.s 115 @ carry overflow from fraction to integer portion
  /external/sonivox/arm-wt-22k/lib_src/
ARM-E_interpolate_loop_gnu.s 115 @ carry overflow from fraction to integer portion
  /external/tremolo/Tremolo/
ivorbiscodec.h 57 Combinations of the three values carry the following implications:
  /external/vixl/examples/
check-bounds.cc 45 // all the flags except the carry one (C flag).

Completed in 278 milliseconds

1 2 3 4 56 7 8 91011>>