Home
last modified time | relevance | path

Searched refs:tmpX (Results 1 – 4 of 4) sorted by relevance

/third_party/ffmpeg/libavcodec/x86/
Dcelt_pvq_search.asm97 movaps m5, [tmpX + r4] ; X[i]
118 subps m5, m7, [tmpX + r4] ; m5 = Sxy_new = Sxy_norm - X[i]
174 VBROADCASTSS m3, [tmpX + r4]
216 %define tmpX rsp
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/tls/
Dlibtommath.c606 mp_int tmpG, tmpX; in mp_exptmod()
619 if ((err = mp_init(&tmpX)) != MP_OKAY) { in mp_exptmod()
623 if ((err = mp_abs(X, &tmpX)) != MP_OKAY) { in mp_exptmod()
624 mp_clear_multi(&tmpG, &tmpX, NULL); in mp_exptmod()
629 err = mp_exptmod(&tmpG, &tmpX, P, Y); in mp_exptmod()
630 mp_clear_multi(&tmpG, &tmpX, NULL); in mp_exptmod()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/tls/
Dlibtommath.c606 mp_int tmpG, tmpX; in mp_exptmod()
619 if ((err = mp_init(&tmpX)) != MP_OKAY) { in mp_exptmod()
623 if ((err = mp_abs(X, &tmpX)) != MP_OKAY) { in mp_exptmod()
624 mp_clear_multi(&tmpG, &tmpX, NULL); in mp_exptmod()
629 err = mp_exptmod(&tmpG, &tmpX, P, Y); in mp_exptmod()
630 mp_clear_multi(&tmpG, &tmpX, NULL); in mp_exptmod()
/third_party/skia/src/sksl/codegen/
DSkSLMetalCodeGenerator.cpp561 String tmpX = this->getTempVariable(arguments[0]->type()); in writeIntrinsicCall() local
563 this->write("(" + tmpX + " = "); in writeIntrinsicCall()
567 this->write(", " + tmpX + " - " + tmpY + " * floor(" + tmpX + " / " + tmpY + "))"); in writeIntrinsicCall()