/toolchain/binutils/binutils-2.27/include/opcode/ |
rx.h | 85 RXO_adc, /* d = d + s + carry */ 86 RXO_sbb, /* d = d - s - ~carry */ 93 RXO_rolc, /* d <<= 1 through carry */ 94 RXO_rorc, /* d >>= 1 through carry*/ 95 RXO_rotl, /* d <<= #s without carry */ 96 RXO_rotr, /* d >>= #s without carry*/
|
/prebuilts/go/darwin-x86/src/crypto/elliptic/ |
p256.go | 219 // p256ReduceCarry adds a multiple of p in order to cancel |carry|, 222 // On entry: carry < 2**3, inout[0,2,...] < 2**29, inout[1,3,...] < 2**28. 224 func p256ReduceCarry(inout *[p256Limbs]uint32, carry uint32) { 225 carry_mask := nonZeroToAllOnes(carry) 227 inout[0] += carry << 1 229 // carry < 2**3 thus (carry << 11) < 2**14 and we added 2**28 in the 231 inout[3] -= carry << 11 235 inout[6] -= carry << 22 236 // This may underflow if carry is non-zero but, if so, we'll fix it in th [all...] |
/prebuilts/go/linux-x86/src/crypto/elliptic/ |
p256.go | 219 // p256ReduceCarry adds a multiple of p in order to cancel |carry|, 222 // On entry: carry < 2**3, inout[0,2,...] < 2**29, inout[1,3,...] < 2**28. 224 func p256ReduceCarry(inout *[p256Limbs]uint32, carry uint32) { 225 carry_mask := nonZeroToAllOnes(carry) 227 inout[0] += carry << 1 229 // carry < 2**3 thus (carry << 11) < 2**14 and we added 2**28 in the 231 inout[3] -= carry << 11 235 inout[6] -= carry << 22 236 // This may underflow if carry is non-zero but, if so, we'll fix it in th [all...] |
/external/vulkan-validation-layers/libs/glm/detail/ |
func_integer.inl | 50 uint & Carry 55 Carry = (Value64 % (static_cast<uint64>(1) << static_cast<uint64>(32))) > 1 ? static_cast<uint32>(1) : static_cast<uint32>(0); 64 uvec2 & Carry 68 uaddCarry(x[0], y[0], Carry[0]), 69 uaddCarry(x[1], y[1], Carry[1])); 77 uvec3 & Carry 81 uaddCarry(x[0], y[0], Carry[0]), 82 uaddCarry(x[1], y[1], Carry[1]), 83 uaddCarry(x[2], y[2], Carry[2])); 91 uvec4 & Carry [all...] |
/prebuilts/ndk/r16/sources/third_party/vulkan/src/libs/glm/detail/ |
func_integer.inl | 50 uint & Carry 55 Carry = (Value64 % (static_cast<uint64>(1) << static_cast<uint64>(32))) > 1 ? static_cast<uint32>(1) : static_cast<uint32>(0); 64 uvec2 & Carry 68 uaddCarry(x[0], y[0], Carry[0]), 69 uaddCarry(x[1], y[1], Carry[1])); 77 uvec3 & Carry 81 uaddCarry(x[0], y[0], Carry[0]), 82 uaddCarry(x[1], y[1], Carry[1]), 83 uaddCarry(x[2], y[2], Carry[2])); 91 uvec4 & Carry [all...] |
/external/aac/libSACdec/src/ |
sac_tsd.cpp | 55 Your modified versions of the FDK AAC Codec must carry prominent notices stating 172 LONG carry = 0; local 176 carry += ((LONG)a[h]) - ((LONG)b[h]); 177 a[h] = (USHORT)carry; 178 carry = carry >> 16; 182 carry = ((LONG)a[h]) + carry; 183 a[h] = (USHORT)carry; 184 carry = carry >> 16 [all...] |
/external/swiftshader/third_party/LLVM/lib/Support/ |
APInt.cpp | 179 /// 1 is returned if there is a carry out, otherwise 0 is returned. 180 /// @returns the carry of the addition. 185 y = 1; // Carry one to next digit. 187 y = 0; // No need to carry so exit early 234 /// @returns the carry out from the addition 238 bool carry = false; local 241 dest[i] = x[i] + y[i] + carry; 242 carry = dest[i] < limit || (carry && dest[i] == limit); 244 return carry; 293 uint64_t carry = 0; local 329 uint64_t carry = 0, lx = 0, hx = 0; local [all...] |
/toolchain/binutils/binutils-2.27/gas/config/ |
atof-ieee.c | 543 unsigned long carry; 545 for (carry = 1; carry && (lp >= words); lp--) 547 carry = *lp + carry; 548 *lp = carry; 549 carry >>= LITTLENUM_NUMBER_OF_BITS; 619 unsigned long carry; 627 /* #if (sizeof(carry)) < ((sizeof(bits[0]) * BITS_PER_CHAR) + 2) 628 Please allow at least 1 more bit in carry than is in a LITTLENUM 541 unsigned long carry; local 617 unsigned long carry; local [all...] |
/external/boringssl/src/crypto/fipsmodule/bn/asm/ |
armv8-mont.pl | 109 // question is when does it carry? Is there alternative 111 // observe that condition for carry is quite simple: 112 // $lo0 being non-zero. So that carry can be calculated 280 my ($cnt,$carry,$topmost)=("x27","x28","x30"); 281 my ($tp,$ap_end,$na0)=($bp,$np,$carry); 523 //adc $carry,xzr,xzr // moved below 550 adc $carry,xzr,xzr // carry bit, modulo-scheduled 571 adc $carry,$carry,xz [all...] |
/external/llvm/lib/Support/ |
APInt.cpp | 182 /// 1 is returned if there is a carry out, otherwise 0 is returned. 183 /// @returns the carry of the addition. 188 y = 1; // Carry one to next digit. 190 y = 0; // No need to carry so exit early 237 /// @returns the carry out from the addition 241 bool carry = false; local 244 dest[i] = x[i] + y[i] + carry; 245 carry = dest[i] < limit || (carry && dest[i] == limit); 247 return carry; 296 uint64_t carry = 0; local 332 uint64_t carry = 0, lx = 0, hx = 0; local 1235 uint64_t carry = 0; local [all...] |
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
APInt.cpp | 182 /// 1 is returned if there is a carry out, otherwise 0 is returned. 183 /// @returns the carry of the addition. 188 y = 1; // Carry one to next digit. 190 y = 0; // No need to carry so exit early 237 /// @returns the carry out from the addition 241 bool carry = false; local 244 dest[i] = x[i] + y[i] + carry; 245 carry = dest[i] < limit || (carry && dest[i] == limit); 247 return carry; 312 uint64_t carry = 0; local 348 uint64_t carry = 0, lx = 0, hx = 0; local 1209 uint64_t carry = 0; local [all...] |
/art/compiler/utils/arm/ |
constants_arm.h | 110 ADC = 5, // Add with Carry 111 SBC = 6, // Subtract with Carry 112 RSC = 7, // Reverse Subtract with Carry
|
/prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/ |
SDL_test_random.h | 32 A "32-bit Multiply with carry random number generator. Very fast. 35 multiply-with-carry generator: x(n) = a*x(n-1) + carry mod 2^32.
|
/prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/ |
SDL_test_random.h | 32 A "32-bit Multiply with carry random number generator. Very fast. 35 multiply-with-carry generator: x(n) = a*x(n-1) + carry mod 2^32.
|
/prebuilts/misc/windows/sdl2/include/ |
SDL_test_random.h | 32 A "32-bit Multiply with carry random number generator. Very fast. 35 multiply-with-carry generator: x(n) = a*x(n-1) + carry mod 2^32.
|
/prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/ |
SDL_test_random.h | 32 A "32-bit Multiply with carry random number generator. Very fast. 35 multiply-with-carry generator: x(n) = a*x(n-1) + carry mod 2^32.
|
/libcore/luni/src/main/java/java/math/ |
BitLevel.java | 76 // this digit absorbs the carry 115 int carry = 0; local 118 result[i] = (val << 1) | carry; 119 carry = val >>> 31; 121 if(carry != 0) { 122 result[srcLen] = carry;
|
/external/llvm/test/CodeGen/AArch64/ |
mul-lohi.ll | 7 ; CHECK-DAG: umulh [[CARRY:x[0-9]+]], x0, x2 13 ; CHECK-BE-DAG: umulh [[CARRY:x[0-9]+]], x1, x3
|
/external/llvm/test/CodeGen/Generic/ |
add-with-overflow-24.ll | 29 br i1 %obit, label %carry, label %normal 35 carry:
|
/external/llvm/test/CodeGen/X86/ |
i128-mul.ll | 27 %carry.013 = phi i64 [ %conv6, %for.body ], [ 0, %entry ] 33 %conv3 = zext i64 %carry.013 to i128
|
sub-with-overflow.ll | 31 br i1 %obit, label %carry, label %normal 37 carry:
|
/external/mesa3d/prebuilt-intermediates/glsl/ |
ir_expression_operation_strings.h | 103 "carry", 219 "carry",
|
/external/swiftshader/third_party/LLVM/test/CodeGen/Generic/ |
add-with-overflow-24.ll | 29 br i1 %obit, label %carry, label %normal 35 carry:
|
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/ |
sub-with-overflow.ll | 31 br i1 %obit, label %carry, label %normal 37 carry:
|
/external/syslinux/gpxe/src/arch/i386/include/bits/ |
cpu.h | 55 #define X86_EFLAGS_CF 0x00000001 /* Carry Flag */ 57 #define X86_EFLAGS_AF 0x00000010 /* Auxillary carry Flag */
|