Searched refs:U2 (Results 1 - 10 of 10) sorted by relevance

/freebsd-11-stable/contrib/libdivsufsort/lib/
H A Dsssort.c144 const sauchar_t *U1, *U2, *U1n, *U2n; local
147 U2 = T + depth + *p2,
150 (U1 < U1n) && (U2 < U2n) && (*U1 == *U2);
151 ++U1, ++U2) {
155 (U2 < U2n ? *U1 - *U2 : 1) :
156 (U2 < U2n ? -1 : 0);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DDataExtractor.h24 Uint24(uint8_t U0, uint8_t U1, uint8_t U2) { argument
25 Bytes[0] = U0; Bytes[1] = U1; Bytes[2] = U2;
/freebsd-11-stable/crypto/openssl/crypto/ec/
H A Decp_nistz256.c320 BN_ULONG U2[P256_LIMBS], S2[P256_LIMBS]; local
368 ecp_nistz256_mul_mont(U2, in2_x, Z1sqr); /* U2 = X2*Z1^2 */
369 ecp_nistz256_sub(H, U2, U1); /* H = U2 - U1 */
374 if (is_equal(U1, U2) && !in1infty && !in2infty) {
390 ecp_nistz256_mul_mont(U2, U1, Hsqr); /* U1*H^2 */
391 ecp_nistz256_mul_by_2(Hsqr, U2); /* 2*U1*H^2 */
396 ecp_nistz256_sub(res_y, U2, res_x);
420 BN_ULONG U2[P256_LIMB local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringExtras.h162 unsigned U2 = hexDigitValue(LSB); local
163 assert(U1 != -1U && U2 != -1U);
165 return static_cast<uint8_t>((U1 << 4) | U2);
/freebsd-11-stable/crypto/openssl/crypto/ec/asm/
H A Decp_nistz256-x86_64.pl2189 $U1,$U2,$S1,$S2,
2330 lea $U2(%rsp), $r_ptr # U2 = X2*Z1^2
2331 call __ecp_nistz256_mul_mont$x # p256_mul_mont(U2, in2_x, Z1sqr);
2334 lea $H(%rsp), $r_ptr # H = U2 - U1
2335 call __ecp_nistz256_sub_from$x # p256_sub(H, U2, U1);
2342 jnz .Ladd_proceed$x # is_equal(U1,U2)?
2390 lea $U2(%rsp), $r_ptr # U1*H^2
2391 call __ecp_nistz256_mul_mont$x # p256_mul_mont(U2, U1, Hsqr);
2401 #lea $U2(
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolRecord.h164 uint32_t U2 = 0; member in struct:llvm::codeview::DecodedAnnotation
318 Result.U2 = GetCompressedAnnotation(Next);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DSymbolDumper.cpp497 << W.hex(Annotation.U2)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp337 Instruction *U2 = cast<Instruction>(*IncrUse++);
344 Compare = dyn_cast<FCmpInst>(U2);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.cpp722 formatCodeOffset(Annot.U2);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp3105 auto U2 = dyn_cast<Instruction>(*U->user_begin());
3106 if (!U2 || U2->getOpcode() != OpCode)
3110 if ((U2->getOperand(0) == U->getOperand(0) && U2->getOperand(1) == U) ||
3111 (U2->getOperand(1) == U->getOperand(0) && U2->getOperand(0) == U)) {
3112 UsersToVisit.push_back(U2);

Completed in 157 milliseconds