/external/srtp/crypto/kernel/ |
key.c | 83 // carry 88 // no carry
|
/external/lldb/source/Plugins/Instruction/ARM/ |
EmulateInstructionARM.cpp | 598 (result, carry, overflow) = AddWithCarry(SP, imm32, '0'); 606 APSR.C = carry; 816 APSR.C = carry; 825 uint32_t carry = 0; // the carry bit after ThumbExpandImm_C or ARMExpandImm_C. local 834 carry = APSR_C; 841 imm32 = ThumbExpandImm_C(opcode, APSR_C, carry); 865 // d = UInt(Rd); setflags = (S == ?1?); (imm32, carry) = ARMExpandImm_C(imm12, APSR.C); 868 imm32 = ARMExpandImm_C (opcode, APSR_C, carry); 901 if (!WriteCoreRegOptionalFlags(context, result, Rd, setflags, carry)) 1065 uint32_t carry; \/\/ the carry bit after ThumbExpandImm_C or ARMExpandImm_C local 1129 uint32_t carry; \/\/ the carry bit after the shift operation local 3192 uint32_t carry; \/\/ the carry bit after the shift operation local 3281 uint32_t carry; \/\/ the carry bit after the shift operation local 5479 uint32_t carry; \/\/ the carry bit after ARM\/Thumb Expand operation local 5554 uint32_t carry; local 5644 uint32_t carry; \/\/ the carry bit after ARM\/Thumb Expand operation local 5717 uint32_t carry; local 8278 uint32_t carry; \/\/ the carry bit after ARM\/Thumb Expand operation local 8354 uint32_t carry; local 8445 uint32_t carry; \/\/ the carry bit after ARM\/Thumb Expand operation local 8520 uint32_t carry; local 9193 uint32_t carry; \/\/ the carry bit after ARM\/Thumb Expand operation local 9252 uint32_t carry; local 9318 uint32_t carry; \/\/ the carry bit after ARM\/Thumb Expand operation local 9376 uint32_t carry; local [all...] |
/external/ltrace/sysdeps/linux-gnu/arm/ |
regs.h | 46 int arm_get_shifted_register(struct process *proc, uint32_t inst, int carry,
|
/frameworks/base/core/java/com/android/internal/net/ |
VpnInfo.java | 23 * A lightweight container used to carry information of the ongoing VPN.
|
/external/llvm/test/CodeGen/X86/ |
add.ll | 56 br i1 %obit, label %carry, label %normal 60 br label %carry 62 carry:
|
/external/skia/include/utils/ |
SkRandom.h | 16 multiply-with-carry "mother of all" algorithm. Unlike rand(), this class holds 153 // multiply-with-carry step will forevermore return zero. 173 // Constants for the multiply-with-carry steps
|
/external/wpa_supplicant_8/src/crypto/ |
aes-omac1.c | 18 int i, carry; local 20 carry = pad[0] & 0x80; 24 if (carry)
|
/system/core/include/mincrypt/ |
p256.h | 115 // Returns 1 on carry. 119 // Returns carry 1 on carry.
|
/external/llvm/lib/Support/ |
ScaledNumber.cpp | 292 bool Carry = doesRoundUp(Str[Truncate]); 293 if (!Carry) 307 Carry = false; 311 // Add "1" in front if we still need to carry. 312 return stripTrailingZeros(std::string(Carry, '1') + Str.substr(0, Truncate));
|
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/decoder/ |
FwdLockFile.c | 225 unsigned char carry = 0; local 229 pCounter[i] = part + carry; 230 carry = (part < pNonce[i] || pCounter[i] < part) ? 1 : 0; 233 pCounter[i] = pNonce[i] + carry; 234 carry = (pCounter[i] < pNonce[i]) ? 1 : 0;
|
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/ |
BluetoothPbapClient.java | 152 * Indicates to server that Name attribute of vCard shall be used to carry 158 * Indicates to server that Number attribute of vCard shall be used to carry 164 * Indicates to server that Sound attribute of vCard shall be used to carry 232 * This event carry on results of the request. 254 * This event carry on results of the request. 275 * This event carry on results of the request. 292 * This event carry on results of the request. 309 * This event carry on results of the request. 739 * @param searchAttr vCard attribute which shall be used to carry out search 793 * @param searchAttr vCard attribute which shall be used to carry out searc [all...] |
/external/iproute2/man/man8/ |
ip-l2tp.8 | 111 fixed. L2TPv3 tunnels can carry data of more than one session. Each 124 protocol value to carry L2TP data without the overhead of UDP. Use IP 153 Note that unmanaged tunnels carry only ethernet frames. If you need to 154 carry PPP traffic (L2TPv2) or your peer doesn't support unmanaged 306 To carry non-IP data, the L2TP network interface is added to a bridge 344 the tunnel. When the ethernet frames carry protocols which are
|
/external/boringssl/src/crypto/cmac/ |
cmac.c | 133 /* Shift |in| to left, including carry. */ 139 const uint8_t carry = in[0] >> 7; local 140 out[i] = (in[i] << 1) ^ ((0 - carry) & 0x87);
|
/external/libavc/encoder/ |
ih264e_cabac.h | 205 * (as the actual bits depend on carry propogation later) 206 * 3. If leading byte is not 0xff check for any carry propogation 207 * 4. Insert the carry (propogated in previous byte) along with outstanding
|
/external/llvm/unittests/ADT/ |
APIntTest.cpp | 741 integerPart carry = APInt::tcDecrement(&singleWord, 1); local 742 EXPECT_EQ(carry, integerPart(0)); 749 integerPart carry = APInt::tcDecrement(&singleWord, 1); local 750 EXPECT_EQ(carry, integerPart(1)); 768 integerPart carry = APInt::tcDecrement(test, 4); local 769 EXPECT_EQ(carry, integerPart(0)); 777 integerPart carry = APInt::tcDecrement(test, 4); local 778 EXPECT_EQ(carry, integerPart(0)); 786 integerPart carry = APInt::tcDecrement(test, 4); local 787 EXPECT_EQ(carry, integerPart(0)) 795 integerPart carry = APInt::tcDecrement(test, 4); local [all...] |
/external/tcpdump/ |
in_cksum.c | 175 * addition must include an end-around carry; we do this by 178 * the carry, to the lower 16 bits of the sum, and then do it 179 * again in case *that* sum produced a carry.
|
/external/icu/icu4c/source/i18n/ |
decNumber.c | 4916 uInt carry; \/* carry (NB not uLong) *\/ local 6386 eInt carry=0; \/* carry integer (could be Long) *\/ local [all...] |
/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_ceil.c | 64 if(j<i1) i0+=1; /* got a carry */
|
s_floor.c | 65 if(j<i1) i0 +=1 ; /* got a carry */
|
/external/boringssl/src/crypto/bn/asm/ |
x86_64-gcc.c | 71 #define mul_add(r, a, word, carry) \ 76 : "+r"(carry), "+d"(high) \ 81 : "r"(carry), "g"(0) \ 83 carry = high; \ 86 #define mul(r, a, word, carry) \ 91 : "+r"(carry), "+d"(high) \ 94 (r) = carry, carry = high; \ 207 " subq %0,%0 \n" /* clear carry */
|
/external/fdlibm/ |
s_ceil.c | 68 if(j<i1) i0+=1; /* got a carry */
|
s_floor.c | 69 if(j<i1) i0 +=1 ; /* got a carry */
|
/external/libopus/celt/ |
mfrngcod.h | 42 /*Carry bit of the high-order range symbol.*/
|
/external/llvm/test/CodeGen/AArch64/ |
arm64-scaled_iv.ll | 22 ; The induction variable should carry the scaling factor: 1 * 8 = 8.
|
/external/llvm/test/CodeGen/R600/ |
split-scalar-i64-add.ll | 6 ; SALU, but the upper half does not. The addc expects the carry bit
|