Home
last modified time | relevance | path

Searched refs:B (Results 1 – 19 of 19) sorted by relevance

/system/core/libmincrypt/
Dsha.c40 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()
Dsha256.c59 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()
Drsa.c63 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/
DDumpPublicKey.java124 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/
DARMAssemblerProxy.cpp189 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()
DARMAssembler.h106 virtual void B(int cc, uint32_t* pc);
110 virtual void B(int cc, const char* label);
DARMAssemblerProxy.h95 virtual void B(int cc, uint32_t* pc);
99 virtual void B(int cc, const char* label);
DMIPSAssembler.h106 virtual void B(int cc, uint32_t* pc);
110 virtual void B(int cc, const char* label);
362 void B(const char* label);
DArm64Assembler.h114 virtual void B(int cc, uint32_t* pc);
118 virtual void B(int cc, const char* label);
DGGLAssembler.cpp325 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()
DARMAssemblerInterface.h141 virtual void B(int cc, uint32_t* pc) = 0;
146 virtual void B(int cc, const char* label) = 0;
DARMAssembler.cpp119 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
DMIPSAssembler.cpp427 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
DArm64Assembler.cpp269 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/
Dsse2-memset32-atom.S94 # define JMPTBL(I, B) I - B argument
122 # define JMPTBL(I, B) I argument
Dsse2-memset16-atom.S94 # define JMPTBL(I, B) I - B argument
122 # define JMPTBL(I, B) I argument
/system/core/libcutils/arch-x86_64/
Dandroid_memset32_SSE2-atom.S53 #define JMPTBL(I, B) I - B argument
Dandroid_memset16_SSE2-atom.S53 #define JMPTBL(I, B) I - B argument
/system/media/camera/src/
Dcamera_metadata.c125 #define MAX_ALIGNMENT(A, B) (((A) > (B)) ? (A) : (B)) argument