| /freebsd/crypto/krb5/src/lib/crypto/builtin/sha1/ |
| H A D | shs.c | 56 #define expand(W,i) ( W[ i & 15 ] = ROTL( 1, ( W[ i & 15 ] ^ W[ (i - 14) & 15 ] ^ \ macro 59 #define expand(W,i) ( W[ i & 15 ] ^= W[ (i - 14) & 15 ] ^ \ macro 124 SHS_LONG x = (i < 16) ? eData[i] : expand(eData, i); in SHSTransform() 129 subRound(A, B, C, D, E, f2, K2, expand(eData, i)); in SHSTransform() 133 subRound(A, B, C, D, E, f3, K3, expand(eData, i)); in SHSTransform() 137 subRound(A, B, C, D, E, f4, K4, expand(eData, i)); in SHSTransform() 161 subRound( E, A, B, C, D, f1, K1, expand( eData, 16 ) ); in SHSTransform() 162 subRound( D, E, A, B, C, f1, K1, expand( eData, 17 ) ); in SHSTransform() 163 subRound( C, D, E, A, B, f1, K1, expand( eData, 18 ) ); in SHSTransform() 164 subRound( B, C, D, E, A, f1, K1, expand( eData, 19 ) ); in SHSTransform() [all …]
|
| /freebsd/crypto/openssl/crypto/sm3/ |
| H A D | sm3.c | 70 W00 = EXPAND(W00, W07, W13, W03, W10); in ossl_sm3_block_data_order() 72 W01 = EXPAND(W01, W08, W14, W04, W11); in ossl_sm3_block_data_order() 74 W02 = EXPAND(W02, W09, W15, W05, W12); in ossl_sm3_block_data_order() 76 W03 = EXPAND(W03, W10, W00, W06, W13); in ossl_sm3_block_data_order() 78 W04 = EXPAND(W04, W11, W01, W07, W14); in ossl_sm3_block_data_order() 80 W05 = EXPAND(W05, W12, W02, W08, W15); in ossl_sm3_block_data_order() 82 W06 = EXPAND(W06, W13, W03, W09, W00); in ossl_sm3_block_data_order() 84 W07 = EXPAND(W07, W14, W04, W10, W01); in ossl_sm3_block_data_order() 86 W08 = EXPAND(W08, W15, W05, W11, W02); in ossl_sm3_block_data_order() 88 W09 = EXPAND(W09, W00, W06, W12, W03); in ossl_sm3_block_data_order() [all …]
|
| /freebsd/contrib/bmake/unit-tests/ |
| H A D | dir-expand-path.mk | 1 # $NetBSD: dir-expand-path.mk,v 1.1 2020/08/22 21:55:54 rillig Exp $ 5 _!= rm -rf dir-expand-path.dir.* 6 _!= mkdir dir-expand-path.dir.1 7 _!= mkdir dir-expand-path.dir.2 8 _!= touch dir-expand-path.dir.1/file1.src 9 _!= touch dir-expand-path.dir.1/file2.src 10 _!= touch dir-expand-path.dir.2/file3.src 12 .PATH: dir-expand-path.dir.1 13 .PATH: dir-expand-path.dir.2 19 @rm -rf dir-expand-path.dir.*
|
| H A D | var-op-expand.exp | 1 make: var-op-expand.mk:274: Unknown modifier ":s,value,replaced," 4 make: var-op-expand.mk:282: Unknown modifier ":s,value,replaced," 7 make: var-op-expand.mk:295: Bad condition 9 make: var-op-expand.mk:295: Unknown modifier ":Z1" 12 make: var-op-expand.mk:295: Unknown modifier ":Z2" 15 make: var-op-expand.mk:295: Unknown modifier ":Z1" 17 make: var-op-expand.mk:295: Unknown modifier ":Z2"
|
| H A D | dir-expand-path.exp | 1 dir-expand-path.dir.1/file1.src 2 dir-expand-path.dir.1/file2.src 3 dir-expand-path.dir.2/file3.src
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AVR/ |
| H A D | AVRExpandPseudoInsts.cpp | 1 //===-- AVRExpandPseudoInsts.cpp - Expand pseudo instructions -------------===// 54 template <unsigned OP> bool expand(Block &MBB, BlockIt MBBI); 136 assert(ExpandCount < 10 && "pseudo expand limit reached"); in runOnMachineFunction() 289 bool AVRExpandPseudo::expand<AVR::ADDWRdRr>(Block &MBB, BlockIt MBBI) { in expand() function in __anon0c359c080111::AVRExpandPseudo 294 bool AVRExpandPseudo::expand<AVR::ADCWRdRr>(Block &MBB, BlockIt MBBI) { in expand() function in __anon0c359c080111::AVRExpandPseudo 299 bool AVRExpandPseudo::expand<AVR::SUBWRdRr>(Block &MBB, BlockIt MBBI) { in expand() function in __anon0c359c080111::AVRExpandPseudo 304 bool AVRExpandPseudo::expand<AVR::SUBIWRdK>(Block &MBB, BlockIt MBBI) { in expand() function in __anon0c359c080111::AVRExpandPseudo 353 bool AVRExpandPseudo::expand<AVR::SBCWRdRr>(Block &MBB, BlockIt MBBI) { in expand() function in __anon0c359c080111::AVRExpandPseudo 358 bool AVRExpandPseudo::expand<AVR::SBCIWRdK>(Block &MBB, BlockIt MBBI) { in expand() function in __anon0c359c080111::AVRExpandPseudo 398 bool AVRExpandPseudo::expand<AVR::ANDWRdRr>(Block &MBB, BlockIt MBBI) { in expand() function in __anon0c359c080111::AVRExpandPseudo [all …]
|
| H A D | AVRShiftExpand.cpp | 10 /// Expand non-8-bit and non-16-bit shift instructions (shl, lshr, ashr) to 36 void expand(BinaryOperator *BI); 43 INITIALIZE_PASS(AVRShiftExpand, "avr-shift-expand", "AVR Shift Expansion", 53 // Only expand shift instructions (shl, lshr, ashr). in runOnFunction() 56 // Only expand non-8-bit and non-16-bit shifts, since those are expanded in runOnFunction() 60 // Only expand when the shift amount is not known. in runOnFunction() 66 // The expanding itself needs to be done separately as expand() will remove in runOnFunction() 70 expand(I); in runOnFunction() 77 void AVRShiftExpand::expand(BinaryOperator *BI) { in expand() function in AVRShiftExpand 130 llvm_unreachable("asked to expand an instruction that is not a shift"); in expand()
|
| /freebsd/contrib/tcp_wrappers/ |
| H A D | try-from.c | 71 #define EXPAND(str) percent_x(buf, sizeof(buf), str, &request) in main() macro 73 puts(EXPAND("client address (%%a): %a")); in main() 74 puts(EXPAND("client hostname (%%n): %n")); in main() 75 puts(EXPAND("client username (%%u): %u")); in main() 76 puts(EXPAND("client info (%%c): %c")); in main() 77 puts(EXPAND("server address (%%A): %A")); in main() 78 puts(EXPAND("server hostname (%%N): %N")); in main() 79 puts(EXPAND("server process (%%d): %d")); in main() 80 puts(EXPAND("server info (%%s): %s")); in main()
|
| /freebsd/contrib/tcsh/nls/russian/ |
| H A D | set3 | 19 17 Expand to preceding word for which this is a prefix 32 30 Expand file name wildcards 33 31 Expand history escapes 34 32 Expand the history escapes in a line 35 33 Expand variables 53 51 Expand history escapes and insert a space 55 53 Expand pathnames, eliminating leading .'s and ..'s 56 54 Expand commands to the resulting pathname or alias
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/BPF/ |
| H A D | BPFISelLowering.cpp | 36 static cl::opt<bool> BPFExpandMemcpyInOrder("bpf-expand-memcpy-in-order", 38 cl::desc("Expand memcpy into load/store pairs in order")); 68 setOperationAction(ISD::BR_JT, MVT::Other, Expand); in BPFTargetLowering() 69 setOperationAction(ISD::BRIND, MVT::Other, Expand); in BPFTargetLowering() 70 setOperationAction(ISD::BRCOND, MVT::Other, Expand); in BPFTargetLowering() 75 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand); in BPFTargetLowering() 76 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand); in BPFTargetLowering() 100 setOperationAction(ISD::SDIVREM, VT, Expand); in BPFTargetLowering() 101 setOperationAction(ISD::UDIVREM, VT, Expand); in BPFTargetLowering() 106 setOperationAction(ISD::MULHU, VT, Expand); in BPFTargetLowering() [all …]
|
| /freebsd/sys/contrib/openzfs/module/icp/asm-x86_64/aes/ |
| H A D | aes_aesni.S | 281 * Expand the cipher key into the encryption key schedule. 347 aeskeygenassist $0x1, %xmm2, %xmm1 // expand the key 351 aeskeygenassist $0x2, %xmm2, %xmm1 // expand the key 355 aeskeygenassist $0x4, %xmm2, %xmm1 // expand the key 359 aeskeygenassist $0x8, %xmm2, %xmm1 // expand the key 363 aeskeygenassist $0x10, %xmm2, %xmm1 // expand the key 367 aeskeygenassist $0x20, %xmm2, %xmm1 // expand the key 371 aeskeygenassist $0x40, %xmm2, %xmm1 // expand the key 394 aeskeygenassist $0x1, %xmm2, %xmm1 // expand the key 396 aeskeygenassist $0x2, %xmm2, %xmm1 // expand the key [all …]
|
| /freebsd/contrib/tcsh/nls/ukrainian/ |
| H A D | set3 | 19 17 Expand to preceding word for which this is a prefix 32 30 Expand file name wildcards 33 31 Expand history escapes 34 32 Expand the history escapes in a line 35 33 Expand variables 53 51 Expand history escapes and insert a space 55 53 Expand pathnames, eliminating leading .'s and ..'s 56 54 Expand commands to the resulting pathname or alias
|
| /freebsd/contrib/tcsh/nls/C/ |
| H A D | set3 | 19 17 Expand to preceding word for which this is a prefix 32 30 Expand file name wildcards 33 31 Expand history escapes 34 32 Expand the history escapes in a line 35 33 Expand variables 53 51 Expand history escapes and insert a space 55 53 Expand pathnames, eliminating leading .'s and ..'s 56 54 Expand commands to the resulting pathname or alias
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | TargetLoweringBase.cpp | 663 Expand); in initActions() 670 OpActions[(unsigned)VT.SimpleTy][NT] = Expand; in initActions() 674 setTruncStoreAction(AVT, VT, Expand); in initActions() 675 setLoadExtAction(ISD::EXTLOAD, AVT, VT, Expand); in initActions() 676 setLoadExtAction(ISD::ZEXTLOAD, AVT, VT, Expand); in initActions() 682 setIndexedLoadAction(IM, VT, Expand); in initActions() 683 setIndexedStoreAction(IM, VT, Expand); in initActions() 684 setIndexedMaskedLoadAction(IM, VT, Expand); in initActions() 685 setIndexedMaskedStoreAction(IM, VT, Expand); in initActions() 699 // Default all indexed load / store to expand. in initActions() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/ |
| H A D | CSKYISelLowering.cpp | 58 setOperationAction(ISD::SREM, MVT::i32, Expand); in CSKYTargetLowering() 59 setOperationAction(ISD::UREM, MVT::i32, Expand); in CSKYTargetLowering() 60 setOperationAction(ISD::UDIVREM, MVT::i32, Expand); in CSKYTargetLowering() 61 setOperationAction(ISD::SDIVREM, MVT::i32, Expand); in CSKYTargetLowering() 62 setOperationAction(ISD::CTPOP, MVT::i32, Expand); in CSKYTargetLowering() 63 setOperationAction(ISD::ROTR, MVT::i32, Expand); in CSKYTargetLowering() 64 setOperationAction(ISD::SHL_PARTS, MVT::i32, Expand); in CSKYTargetLowering() 65 setOperationAction(ISD::SRL_PARTS, MVT::i32, Expand); in CSKYTargetLowering() 66 setOperationAction(ISD::SRA_PARTS, MVT::i32, Expand); in CSKYTargetLowering() 67 setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand); in CSKYTargetLowering() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/ |
| H A D | SparcISelLowering.cpp | 1612 setOperationAction(Op, MVT::v2i32, Expand); in SparcTargetLowering() 1616 setLoadExtAction(ISD::SEXTLOAD, VT, MVT::v2i32, Expand); in SparcTargetLowering() 1617 setLoadExtAction(ISD::ZEXTLOAD, VT, MVT::v2i32, Expand); in SparcTargetLowering() 1618 setLoadExtAction(ISD::EXTLOAD, VT, MVT::v2i32, Expand); in SparcTargetLowering() 1620 setLoadExtAction(ISD::SEXTLOAD, MVT::v2i32, VT, Expand); in SparcTargetLowering() 1621 setLoadExtAction(ISD::ZEXTLOAD, MVT::v2i32, VT, Expand); in SparcTargetLowering() 1622 setLoadExtAction(ISD::EXTLOAD, MVT::v2i32, VT, Expand); in SparcTargetLowering() 1624 setTruncStoreAction(VT, MVT::v2i32, Expand); in SparcTargetLowering() 1625 setTruncStoreAction(MVT::v2i32, VT, Expand); in SparcTargetLowering() 1644 setLoadExtAction(ISD::EXTLOAD, VT, MVT::f16, Expand); in SparcTargetLowering() [all …]
|
| /freebsd/contrib/ee/ |
| H A D | ee.msg | 64 53 "expand : expand tabs noexpand: do not expand tabs " 67 56 "+# :go to line # -i :no info window -e : don't expand tabs -h :no highlight" 77 66 "expand: expand tabs |noexpand: do not expand tabs " 139 128 "EXPAND"
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | EVP_PKEY_CTX_set_hkdf_md.pod | 8 HMAC-based Extract-and-Expand key derivation algorithm 30 HKDF follows the "extract-then-expand" paradigm, where the KDF logically 44 up for HKDF will perform an extract followed by an expand operation in one go. 45 The derived key returned will be the result after the expand operation. The 62 In this mode calling L<EVP_PKEY_derive(3)> will just perform the expand 105 The output length of an HKDF expand operation is specified via the length 109 performs an expand operation. Instead, the caller must allocate a buffer of the
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/ |
| H A D | LoongArch.td | 73 // Expand la.global as la.pcrel 76 "Expand la.global as la.pcrel">; 80 "Expand la.global as la.pcrel">; 82 // Expand la.global as la.abs 85 "Expand la.global as la.abs">; 89 "Expand la.global as la.abs">; 91 // Expand la.local as la.abs 94 "Expand la.local as la.abs">; 98 "Expand la.local as la.abs">;
|
| /freebsd/secure/lib/libcrypto/man/man3/ |
| H A D | EVP_PKEY_CTX_set_hkdf_md.3 | 67 HMAC\-based Extract\-and\-Expand key derivation algorithm 89 HKDF follows the "extract-then-expand" paradigm, where the KDF logically 100 up for HKDF will perform an extract followed by an expand operation in one go. 101 The derived key returned will be the result after the expand operation. The 116 In this mode calling \fBEVP_PKEY_derive\fR\|(3) will just perform the expand 157 The output length of an HKDF expand operation is specified via the length 161 performs an expand operation. Instead, the caller must allocate a buffer of the
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | ScalarEvolutionExpander.cpp | 323 /// expandAddToGEP - Expand an addition expression with a pointer type into 354 Value *Idx = expand(Offset); in expandAddToGEP() 498 Value *LHS = expand(URemLHS); in visitAddExpr() 499 Value *RHS = expand(URemRHS); in visitAddExpr() 523 // This is the first operand. Just expand it. in visitAddExpr() 524 Sum = expand(Op); in visitAddExpr() 546 Value *W = expand(SE.getNegativeSCEV(Op)); in visitAddExpr() 552 Value *W = expand(Op); in visitAddExpr() 582 // Expand the calculation of X pow N in the following manner: in visitMulExpr() 603 Value *P = expand(I->second); in visitMulExpr() [all …]
|
| /freebsd/contrib/bearssl/T0/ |
| H A D | ConstData.cs | 49 void Expand(int elen) in Expand() method in ConstData 62 Expand(1); in Add8() 68 Expand(2); in Add16() 75 Expand(3); in Add24() 83 Expand(4); in Add32() 93 Expand(sd.Length + 1); in AddString()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/MSP430/ |
| H A D | MSP430ISelLowering.cpp | 68 setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i8, Expand); in MSP430TargetLowering() 69 setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i16, Expand); in MSP430TargetLowering() 73 setTruncStoreAction(MVT::i16, MVT::i8, Expand); in MSP430TargetLowering() 81 setOperationAction(ISD::ROTL, MVT::i8, Expand); in MSP430TargetLowering() 82 setOperationAction(ISD::ROTR, MVT::i8, Expand); in MSP430TargetLowering() 83 setOperationAction(ISD::ROTL, MVT::i16, Expand); in MSP430TargetLowering() 84 setOperationAction(ISD::ROTR, MVT::i16, Expand); in MSP430TargetLowering() 88 setOperationAction(ISD::BR_JT, MVT::Other, Expand); in MSP430TargetLowering() 91 setOperationAction(ISD::BRCOND, MVT::Other, Expand); in MSP430TargetLowering() 94 setOperationAction(ISD::SELECT, MVT::i8, Expand); in MSP430TargetLowering() [all …]
|
| /freebsd/contrib/llvm-project/openmp/runtime/src/ |
| H A D | kmp_lock.cpp | 2994 #define expand(l, op) 0, __kmp_init_direct_lock, macro 2996 __kmp_init_indirect_lock, 0, KMP_FOREACH_D_LOCK(expand, init)}; 2997 #undef expand 3000 #define expand(l, op) 0, (void (*)(kmp_dyna_lock_t *))__kmp_##op##_##l##_lock, macro 3002 __kmp_destroy_indirect_lock, 0, KMP_FOREACH_D_LOCK(expand, destroy)}; 3003 #undef expand 3004 #define expand(l, op) \ macro 3007 __kmp_destroy_indirect_lock, 0, KMP_FOREACH_D_LOCK(expand, destroy)}; 3008 #undef expand 3011 #define expand( macro 3016 #define expand( global() macro 3024 #define expand( global() macro 3031 #define expand( global() macro 3047 #define expand( global() macro 3052 #define expand( global() macro 3056 #define expand( global() macro 3063 #define expand( global() macro 3068 #define expand( global() macro 3075 #define expand( global() macro 3082 #define expand( global() macro 3382 fill_jumps(table,expand,sep) __kmp_init_dynamic_user_locks() argument 3390 fill_table(table,expand) __kmp_init_dynamic_user_locks() argument 3397 fill_table(table,expand) __kmp_init_dynamic_user_locks() argument 3404 #define expand( __kmp_init_dynamic_user_locks() macro 3408 #define expand( __kmp_init_dynamic_user_locks() macro 3412 #define expand( __kmp_init_dynamic_user_locks() macro 3416 #define expand( __kmp_init_dynamic_user_locks() macro [all...] |
| /freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | Mips16ISelLowering.cpp | 27 "mips16-dont-expand-cond-pseudo", 29 cl::desc("Don't expand conditional move related " 144 setOperationAction(ISD::ROTR, MVT::i32, Expand); in Mips16TargetLowering() 145 setOperationAction(ISD::ROTR, MVT::i64, Expand); in Mips16TargetLowering() 146 setOperationAction(ISD::BSWAP, MVT::i32, Expand); in Mips16TargetLowering() 147 setOperationAction(ISD::BSWAP, MVT::i64, Expand); in Mips16TargetLowering()
|