| /freebsd/crypto/openssl/crypto/chacha/asm/ |
| H A D | chacha-x86.pl | 68 ($b,$b_)=("ebx","ebp"); 106 &mov (&DWP(4*$bp,"esp"),$b_) if ($i!=0); 112 &mov ($b_,&DWP(4*$bn,"esp")) if ($i<7); 113 &mov ($b_,&DWP(128,"esp")) if ($i==7); # loop counter 123 &add ($a,$b_) if ($i<7); # elsewhere 126 ($b,$b_)=($b_,$b); 195 &mov ($b_,&DWP(64+4*6,"esp")); 201 &mov (&DWP(4*6,"esp"),$b_); 210 &mov ($b_,&DWP(64+4*4,"esp")); 222 &add ($a,$b_); # elsewhere [all …]
|
| H A D | chacha-x86_64.pl | 2473 my ($a,$b,$c,$d, $a_,$b_,$c_,$d_,$fourz) = map("%zmm$_",(0..3,16..20)); 2542 vmovdqa32 $b,$b_ 2553 vmovdqa32 $b_,$b 2578 vpaddd $b_,$b,$b 2719 map(s/%z/%y/, $a,$b,$c,$d, $a_,$b_,$c_,$d_,$fourz); 2754 vmovdqa32 $b,$b_ 2788 vpaddd $b_,$b,$b 2830 vmovdqa32 $b_,$b
|
| /freebsd/crypto/openssl/include/openssl/ |
| H A D | objects.h | 121 static int nm##_cmp_BSEARCH_CMP_FN(const void *a_, const void *b_) \ 124 type2 const *b = b_; \ 135 static int nm##_cmp_BSEARCH_CMP_FN(const void *a_, const void *b_) \ 138 type2 const *b = b_; \
|
| /freebsd/contrib/netbsd-tests/lib/libc/ |
| H A D | t_cdb.c | 56 cmp_keys(const void *a_, const void *b_) in cmp_keys() argument 59 uint32_t b = *(const uint32_t *)b_; in cmp_keys()
|
| /freebsd/lib/libmd/aarch64/ |
| H A D | md5block.S | 128 b_ .req m7 label 183 ldp a_, b_, [ctx, #0] 186 add b, b, b_
|
| /freebsd/contrib/bmake/ |
| H A D | bmake.cat1 | 7 …tWWwwXX] [--CC _d_i_r_e_c_t_o_r_y] [--DD _v_a_r_i_a_b_l_e] [--dd _f_l… 8 …-II _d_i_r_e_c_t_o_r_y] [--JJ _p_r_i_v_a_t_e] [--jj _m_a_x___j_o_b_s] 9 …_o_r_y] [--TT _f_i_l_e] [--VV _v_a_r_i_a_b_l_e] [--vv _v_a_r_i_a_b_l_… 10 [_v_a_r_i_a_b_l_e==_v_a_l_u_e] [_t_a_r_g_e_t ...] 39 --DD _v_a_r_i_a_b_l_e 40 Define _v_a_r_i_a_b_l_e to be 1, in the global scope. 164 --jj _m_a_x___j_o_b_s 166 any one time. If _m_a_x___j_o_b_s is a floating point number, or ends 168 reported online by sysconf(3). The value of _m_a_x___j_o_b_s is saved in 179 A job token pool with _m_a_x___j_o_b_s tokens is used to control the [all …]
|
| /freebsd/tools/regression/nfsmmap/ |
| H A D | README | 2 b_{valid,dirty}{off,end} fields of struct buf is consistent with the
|
| /freebsd/contrib/googletest/googlemock/test/ |
| H A D | gmock-spec-builders_test.cc | 1324 EXPECT_CALL(b_, DoB()).Times(2).InSequence(y); in PartialOrderTest() 1330 MockB b_; member in testing::__anon061b47f50111::PartialOrderTest 1335 b_.DoB(); in TEST_F() 1340 b_.DoB(); in TEST_F() 1349 b_.DoB(); in TEST_F() 1350 b_.DoB(); in TEST_F() 1359 b_.DoB(); in TEST_F() 1360 b_.DoB(); in TEST_F() 1366 b_.DoB(); in TEST_F() 1367 b_.DoB(); in TEST_F()
|
| /freebsd/crypto/libecc/src/nn/ |
| H A D | nn_div.c | 1206 nn_src_t a_, b_; in nn_xgcd() local 1227 b_ = &b_cpy; in nn_xgcd() 1229 b_ = b; in nn_xgcd() 1232 ret = nn_cmp(a_, b_, &cmp); EG(ret, err); in nn_xgcd() 1235 ret = _nn_xgcd(g, v, u, b_, a_, &_sign); EG(ret, err); in nn_xgcd() 1238 ret = _nn_xgcd(g, u, v, a_, b_, &_sign); EG(ret, err); in nn_xgcd()
|
| /freebsd/crypto/openssl/crypto/x509/ |
| H A D | v3_asid.c | 123 const ASIdOrRange *const *b_) in ASIdOrRange_cmp() argument 125 const ASIdOrRange *a = *a_, *b = *b_; in ASIdOrRange_cmp()
|
| H A D | v3_addr.c | 678 const IPAddressFamily *const *b_) in IPAddressFamily_cmp() argument 681 const ASN1_OCTET_STRING *b = (*b_)->addressFamily; in IPAddressFamily_cmp()
|
| /freebsd/contrib/googletest/googletest/test/ |
| H A D | gtest_unittest.cc | 3293 static void CompareAndIncrementInts() { ASSERT_NE(a_++, b_++); } in CompareAndIncrementInts() 3300 b_ = 0; in SingleEvaluationTest() 3309 static int b_; member in __anon19f4cde20111::SingleEvaluationTest 3317 int SingleEvaluationTest::b_; member in __anon19f4cde20111::SingleEvaluationTest 3347 EXPECT_EQ(1, b_); in TEST_F() 3361 EXPECT_GT(a_++, b_++); in TEST_F() 3363 EXPECT_EQ(1, b_); in TEST_F() 3366 EXPECT_NONFATAL_FAILURE(EXPECT_LT(a_++, b_++), "(a_++) < (b_++)"); in TEST_F() 3368 EXPECT_EQ(2, b_); in TEST_F() 3375 ASSERT_GT(a_++, b_++); in TEST_F() [all …]
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | os2 | 146 >>5 uleshort x \b_%u
|