/third_party/mbedtls/library/ |
H A D | aesni.c | 289 static void aesni_set_rk_192(__m128i *state0, __m128i *state1, __m128i xword, in aesni_set_rk_192() argument 295 * On entry state0 is r3:r2:r1:r0, state1 is stuff:stuff:r5:r4 in aesni_set_rk_192() 299 * On exit, state0 is r9:r8:r7:r6 and state1 is stuff:stuff:r11:r10 in aesni_set_rk_192() 313 xword = _mm_xor_si128(xword, *state1); // stuff:stuff:r9+r5:r9+r4 in aesni_set_rk_192() 314 *state1 = _mm_slli_si128(*state1, 4); // stuff:stuff:r4:0 in aesni_set_rk_192() 315 xword = _mm_xor_si128(xword, *state1); // stuff:stuff:r9+r5+r4:r9+r4 in aesni_set_rk_192() 316 *state1 = xword; // = stuff:stuff:r11:r10 in aesni_set_rk_192() 318 /* Store state0 and the low half of state1 into rk, which is conceptually in aesni_set_rk_192() 322 memcpy(rk + 16, state1, in aesni_set_rk_192() 332 __m128i state1 = _mm_loadl_epi64(((__m128i *) rk) + 1); aesni_setkey_enc_192() local 349 aesni_set_rk_256(__m128i state0, __m128i state1, __m128i xword, __m128i *rk0, __m128i *rk1) aesni_set_rk_256() argument [all...] |
/third_party/lzma/C/ |
H A D | Sha256Opt.c | 124 RND2(state0, state1); \
129 RND2(state1, state0); \
148 state0 = _mm_shuffle_epi32(state1, 0x1B); /* efgh */ \
149 state1 = state0; \
151 state1 = _mm_unpackhi_epi64(state1, tmp); /* abef */ \
162 __m128i state0, state1;
in Sha256_UpdateBlocks_HW() local 168 state1 = _mm_loadu_si128((const __m128i *) (const void *) &state[4]);
in Sha256_UpdateBlocks_HW() 180 state1_save = state1;
in Sha256_UpdateBlocks_HW() 195 ADD_EPI32(state1, state1_sav in Sha256_UpdateBlocks_HW() 301 v128 state0, state1; Sha256_UpdateBlocks_HW() local [all...] |
/third_party/lzma/Asm/x86/ |
H A D | Sha256Opt.asm | 156 state1 equ @CatStr(xmm, %state1_N)
define 211 ; state1 ; hgfe
213 pshufd state0, state1, 01bH ; efgh
214 movdqa state1, state0 ; efgh
216 punpckhqdq state1, tmp ; abef
229 movdqu state1, [rState + 16] ; hgfe
240 movdqa state1_save, state1
259 paddd state1, state1_save
268 movdqu [rState + 16], state1
|
/third_party/curl/lib/ |
H A D | curl_sasl.c | 351 saslstate state1 = SASL_STOP; in Curl_sasl_start() local 375 state1 = SASL_EXTERNAL; in Curl_sasl_start() 387 state1 = SASL_GSSAPI; in Curl_sasl_start() 408 state1 = SASL_GSASL; in Curl_sasl_start() 421 state1 = SASL_GSASL; in Curl_sasl_start() 435 state1 = SASL_DIGESTMD5; in Curl_sasl_start() 440 state1 = SASL_CRAMMD5; in Curl_sasl_start() 448 state1 = SASL_NTLM; in Curl_sasl_start() 463 state1 = SASL_OAUTH2; in Curl_sasl_start() 476 state1 in Curl_sasl_start() [all...] |
/third_party/ninja/src/ |
H A D | deps_log_test.cc | 43 State state1; in TEST_F() local 51 deps.push_back(state1.GetNode("foo.h", 0)); in TEST_F() 52 deps.push_back(state1.GetNode("bar.h", 0)); in TEST_F() 53 log1.RecordDeps(state1.GetNode("out.o", 0), 1, deps); in TEST_F() 56 deps.push_back(state1.GetNode("foo.h", 0)); in TEST_F() 57 deps.push_back(state1.GetNode("bar2.h", 0)); in TEST_F() 58 log1.RecordDeps(state1.GetNode("out2.o", 0), 2, deps); in TEST_F() 60 DepsLog::Deps* log_deps = log1.GetDeps(state1.GetNode("out.o", 0)); in TEST_F() 95 State state1; in TEST_F() local 106 deps.push_back(state1 in TEST_F() [all...] |
/third_party/node/deps/v8/src/base/utils/ |
H A D | random-number-generator.h | 119 static inline void XorShift128(uint64_t* state0, uint64_t* state1) { in XorShift128() argument 121 uint64_t s0 = *state1; in XorShift128() 127 *state1 = s1; in XorShift128()
|
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
H A D | IsValidUtf8TestUtil.java | 300 int state1 = Utf8.partialIsValidUtf8(Utf8.COMPLETE, bytes, 0, i); in testBytes() 301 int state2 = Utf8.partialIsValidUtf8(state1, bytes, i, j); in testBytes() 304 System.out.printf("state=%04x %04x %04x i=%d j=%d%n", state1, state2, state3, i, j); in testBytes() 321 assertEquals(state1, x.partialIsValidUtf8(Utf8.COMPLETE, 0, i)); in testBytes() 322 assertEquals(state1, x.substring(0, i).partialIsValidUtf8(Utf8.COMPLETE, 0, i)); in testBytes() 323 assertEquals(state2, x.partialIsValidUtf8(state1, i, j - i)); in testBytes() 324 assertEquals(state2, x.substring(i, j).partialIsValidUtf8(state1, 0, j - i)); in testBytes()
|
/third_party/mesa3d/src/gallium/drivers/r300/compiler/ |
H A D | radeon_code.c | 87 unsigned rc_constants_add_state(struct rc_constant_list * c, unsigned state0, unsigned state1) in rc_constants_add_state() argument 95 c->Constants[index].u.State[1] == state1) in rc_constants_add_state() 104 constant.u.State[1] = state1; in rc_constants_add_state()
|
H A D | radeon_code.h | 98 unsigned rc_constants_add_state(struct rc_constant_list * c, unsigned state1, unsigned state2);
|
/third_party/node/deps/v8/src/compiler/ |
H A D | store-store-elimination.cc | 104 ObservableState Intersect(const ObservableState state1, 511 const ObservableState state1, const ObservableState state2) const { in Intersect() 512 if (state1 == state2) return state1; in Intersect() 513 if (state1 == kObservable || state2 == kObservable) return kObservable; in Intersect() 514 if (state1 == kGCObservable || state2 == kGCObservable) { in Intersect() 510 Intersect( const ObservableState state1, const ObservableState state2) const Intersect() argument
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_opt_preamble.c | 324 const def_state *state1 = *(def_state **)data1; in candidate_sort() local 327 float value1 = state1->value / state1->size; in candidate_sort()
|
/third_party/skia/experimental/sorttoy/ |
H A D | sorttoy.cpp | 185 auto state1 = s.snapState(); in mcstack_test() local 186 check_state(state1.get(), s1Trans, expectedS1Clips); in mcstack_test() 207 SkASSERT(state1 == state3); in mcstack_test()
|
/third_party/mesa3d/src/intel/isl/tests/ |
H A D | isl_aux_info_test.cpp | 144 #define E(state1, usage, op, state2) \ 146 isl_aux_state_transition_aux_op(ISL_AUX_STATE_ ## state1, \ 324 #define E(state1, usage, full_surface, state2) \ 326 isl_aux_state_transition_write(ISL_AUX_STATE_ ## state1, \
|
/third_party/lz4/tests/ |
H A D | fuzzer.c | 1178 LZ4_stream_t state1; in FUZ_unitTests() member 1186 DISPLAYLEVEL(4, "state1(%p) state2(%p) state3(%p) LZ4_stream_t size(0x%x): ", in FUZ_unitTests() 1187 (void*)&(shc->state1), (void*)&(shc->state2), (void*)&(shc->state3), (unsigned)sizeof(LZ4_stream_t)); in FUZ_unitTests() 1188 FUZ_CHECKTEST( LZ4_initStream(&(shc->state1), sizeof(shc->state1)) == NULL, "state1 (%p) failed init", (void*)&(shc->state1) ); in FUZ_unitTests() 1191 FUZ_CHECKTEST( LZ4_initStream((char*)&(shc->state1) + 1, sizeof(shc->state1)) != NULL, in FUZ_unitTests() 1192 "hc1+1 (%p) init must fail, due to bad alignment", (void*)((char*)&(shc->state1) in FUZ_unitTests() [all...] |
/third_party/mesa3d/src/imagination/vulkan/ |
H A D | pvr_cmd_buffer.c | 307 pvr_csb_emit (&sub_cmd->control_stream, VDMCTRL_PPP_STATE1, state1) { in pvr_cmd_buffer_emit_ppp_state() 308 state1.addrlsb = framebuffer->ppp_state_bo->vma->dev_addr; in pvr_cmd_buffer_emit_ppp_state() 3262 pvr_csb_emit (csb, VDMCTRL_PDS_STATE1, state1) { in pvr_emit_dirty_pds_state() 3263 state1.pds_data_addr = PVR_DEV_ADDR(pds_vertex_descriptor_data_offset); in pvr_emit_dirty_pds_state() 3264 state1.sd_type = PVRX(VDMCTRL_SD_TYPE_NONE); in pvr_emit_dirty_pds_state() 4144 pvr_csb_emit (control_stream, VDMCTRL_PPP_STATE1, state1) { in pvr_emit_ppp_state() 4145 state1.addrlsb = pvr_bo->vma->dev_addr; in pvr_emit_ppp_state() 4358 pvr_csb_emit (csb, VDMCTRL_VDM_STATE1, state1) { in pvr_emit_dirty_vdm_state() 4365 state1.cut_index = 0xFFFFFFFF; in pvr_emit_dirty_vdm_state() 4369 state1 in pvr_emit_dirty_vdm_state() [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | dxv.c | 746 int ret, state0 = 0, state1 = 0; in dxv_decompress_cocg() local 781 &dst, &state1, tab2, tab3, 8); in dxv_decompress_cocg()
|
/third_party/python/Lib/test/ |
H A D | test_random.py | 27 state1 = self.gen.getstate() 31 self.assertNotEqual(state1, state2)
|
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | cmsccoll.c | 4141 uint32_t state1[2] = { 0, 0 }; in TestHiragana() local 4172 keySize1 = ucol_nextSortKeyPart(ucol, &uiter1, state1, sortKey1, SORTKEYLEN, &status); in TestHiragana()
|