/system/core/libmincrypt/ |
D | sha.c | 40 uint32_t A, B, C, D, E; in SHA1_Transform() local 57 B = ctx->state[1]; in SHA1_Transform() 66 tmp += (D^(B&(C^D))) + 0x5A827999; in SHA1_Transform() 68 tmp += (B^C^D) + 0x6ED9EBA1; in SHA1_Transform() 70 tmp += ((B&C)|(D&(B|C))) + 0x8F1BBCDC; in SHA1_Transform() 72 tmp += (B^C^D) + 0xCA62C1D6; in SHA1_Transform() 76 C = rol(30,B); in SHA1_Transform() 77 B = A; in SHA1_Transform() 82 ctx->state[1] += B; in SHA1_Transform()
|
D | sha256.c | 59 uint32_t A, B, C, D, E, F, G, H; in SHA256_Transform() local 78 B = ctx->state[1]; in SHA256_Transform() 88 uint32_t maj = (A & B) ^ (A & C) ^ (B & C); in SHA256_Transform() 99 C = B; in SHA256_Transform() 100 B = A; in SHA256_Transform() 105 ctx->state[1] += B; in SHA256_Transform()
|
D | rsa.c | 63 uint64_t B = (uint64_t)d0 * key->n[0] + (uint32_t)A; in montMulAdd() local 68 B = (B >> 32) + (uint64_t)d0 * key->n[i] + (uint32_t)A; in montMulAdd() 69 c[i - 1] = (uint32_t)B; in montMulAdd() 72 A = (A >> 32) + (B >> 32); in montMulAdd()
|
/system/core/libmincrypt/tools/ |
D | DumpPublicKey.java | 124 BigInteger B = BigInteger.valueOf(0x100000000L); // 2^32 in printRSA() local 125 BigInteger N0inv = B.subtract(N.modInverse(B)); // -1 / N[0] mod 2^32 in printRSA() 136 long n = N.mod(B).longValue(); in printRSA() 143 N = N.divide(B); in printRSA() 150 long rr = RR.mod(B).longValue(); in printRSA() 157 RR = RR.divide(B); in printRSA() 187 BigInteger B = BigInteger.valueOf(0x100L); // 2^8 in printEC() local 192 long n = X.mod(B).longValue(); in printEC() 199 X = X.divide(B); in printEC() 206 long n = Y.mod(B).longValue(); in printEC() [all …]
|
/system/core/libpixelflinger/codeflinger/ |
D | ARMAssemblerProxy.cpp | 189 void ARMAssemblerProxy::B(int cc, uint32_t* pc) { in B() function in android::ARMAssemblerProxy 190 mTarget->B(cc, pc); in B() 201 void ARMAssemblerProxy::B(int cc, const char* label) { in B() function in android::ARMAssemblerProxy 202 mTarget->B(cc, label); in B()
|
D | ARMAssembler.h | 106 virtual void B(int cc, uint32_t* pc); 110 virtual void B(int cc, const char* label);
|
D | ARMAssemblerProxy.h | 95 virtual void B(int cc, uint32_t* pc); 99 virtual void B(int cc, const char* label);
|
D | MIPSAssembler.h | 106 virtual void B(int cc, uint32_t* pc); 110 virtual void B(int cc, const char* label); 362 void B(const char* label);
|
D | Arm64Assembler.h | 114 virtual void B(int cc, uint32_t* pc); 118 virtual void B(int cc, const char* label);
|
D | GGLAssembler.cpp | 325 B(PL, "fragment_loop"); in scanline_core() 342 B(PL, "fragment_loop"); in scanline_core() 717 B(cc^1, "discard_after_textures"); in build_alpha_test() 744 B(AL, "discard_before_textures"); in build_depth_test() 775 B(cc, "discard_before_textures"); in build_depth_test()
|
D | ARMAssemblerInterface.h | 141 virtual void B(int cc, uint32_t* pc) = 0; 146 virtual void B(int cc, const char* label) = 0;
|
D | ARMAssembler.cpp | 119 void ARMAssembler::B(int cc, const char* label) in B() function in android::ARMAssembler 276 void ARMAssembler::B(int cc, uint32_t* pc) in B() function in android::ARMAssembler
|
D | MIPSAssembler.cpp | 427 ArmToMipsAssembler::B(cc^1, cond.label[++cond.labelnum]); in dataProcessing() 705 void ArmToMipsAssembler::B(int cc, const char* label) in B() function in android::ArmToMipsAssembler 724 case AL: mMips->B(label); break; in B() 742 void ArmToMipsAssembler::B(int cc, uint32_t* to_pc) in B() function in android::ArmToMipsAssembler 1801 void MIPSAssembler::B(const char* label) in B() function in android::MIPSAssembler
|
D | Arm64Assembler.cpp | 269 void ArmToArm64Assembler::B(int cc, const char* label) in B() function in android::ArmToArm64Assembler 557 void ArmToArm64Assembler::B(int /*cc*/, uint32_t* /*pc*/){ in B() function in android::ArmToArm64Assembler
|
/system/core/libcutils/arch-x86/ |
D | sse2-memset32-atom.S | 94 # define JMPTBL(I, B) I - B argument 122 # define JMPTBL(I, B) I argument
|
D | sse2-memset16-atom.S | 94 # define JMPTBL(I, B) I - B argument 122 # define JMPTBL(I, B) I argument
|
/system/core/libcutils/arch-x86_64/ |
D | android_memset32_SSE2-atom.S | 53 #define JMPTBL(I, B) I - B argument
|
D | android_memset16_SSE2-atom.S | 53 #define JMPTBL(I, B) I - B argument
|
/system/media/camera/src/ |
D | camera_metadata.c | 125 #define MAX_ALIGNMENT(A, B) (((A) > (B)) ? (A) : (B)) argument
|