HomeSort by relevance Sort by last modified time
    Searched refs:wvalue (Results 1 - 9 of 9) sorted by null

  /external/boringssl/src/crypto/fipsmodule/ec/
p256-x86_64.c 260 unsigned wvalue = p_str[(index - 1) / 8]; local
261 wvalue = (wvalue >> ((index - 1) % 8)) & kMask;
263 ecp_nistz256_select_w5(r, table, booth_recode_w5(wvalue) >> 1);
269 wvalue = p_str[off] | p_str[off + 1] << 8;
270 wvalue = (wvalue >> ((index - 1) % 8)) & kMask;
272 wvalue = booth_recode_w5(wvalue);
274 ecp_nistz256_select_w5(&h, table, wvalue >> 1)
327 unsigned wvalue = (p_str[0] << 1) & kMask; local
    [all...]
  /external/boringssl/src/crypto/fipsmodule/bn/
rsaz_exp.c 78 int wvalue; local
221 wvalue = p_str[127] >> 3;
222 rsaz_1024_gather5_avx2(result,table_s,wvalue);
232 wvalue = wvalue_16;
233 wvalue = (wvalue>> (index%8)) & 31;
236 rsaz_1024_gather5_avx2(a_inv,table_s,wvalue); /* borrow a_inv */
243 wvalue = p_str[0] & 15;
245 rsaz_1024_gather5_avx2(a_inv,table_s,wvalue); /* borrow a_inv */
exponentiation.c 522 int wvalue; // The 'value' of the window local
542 wvalue = 1;
549 wvalue <<= (i - wend);
550 wvalue |= 1;
566 // wvalue will be an odd number < 2^window
567 if (!BN_mod_mul_reciprocal(r, r, val[wvalue >> 1], &recp, ctx)) {
688 int wvalue = 1; local
692 wvalue <<= (i - wsize);
693 wvalue |= 1;
707 assert(wvalue & 1)
800 unsigned wvalue = 1; local
984 int i, ret = 0, window, wvalue; local
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/elliptic/
p256_amd64.go 484 wvalue := (scalar[0] << 1) & 0xff
485 sel, sign := boothW7(uint(wvalue))
507 wvalue = ((scalar[index/64] >> (index % 64)) + (scalar[index/64+1] << (64 - (index % 64)))) & 0xff
509 wvalue = (scalar[index/64] >> (index % 64)) & 0xff
512 sel, sign = boothW7(uint(wvalue))
568 wvalue := (scalar[index/64] >> (index % 64)) & 0x3f
569 sel, _ = boothW5(uint(wvalue))
583 wvalue = ((scalar[index/64] >> (index % 64)) + (scalar[index/64+1] << (64 - (index % 64)))) & 0x3f
585 wvalue = (scalar[index/64] >> (index % 64)) & 0x3f
588 sel, sign = boothW5(uint(wvalue))
    [all...]
p256_s390x.go 435 wvalue := (uint(scalar[31]) << 1) & 0xff
436 sel, sign := boothW7(uint(wvalue))
450 wvalue = ((uint(scalar[31-index/8]) >> (index % 8)) + (uint(scalar[31-index/8-1]) << (8 - (index % 8)))) & 0xff
452 wvalue = (uint(scalar[31-index/8]) >> (index % 8)) & 0xff
455 sel, sign = boothW7(uint(wvalue))
511 wvalue := (uint(scalar[31-index/8]) >> (index % 8)) & 0x3f
512 sel, _ = boothW5(uint(wvalue))
525 wvalue = ((uint(scalar[31-index/8]) >> (index % 8)) + (uint(scalar[31-index/8-1]) << (8 - (index % 8)))) & 0x3f
527 wvalue = (uint(scalar[31-index/8]) >> (index % 8)) & 0x3f
530 sel, sign = boothW5(uint(wvalue))
    [all...]
  /prebuilts/go/linux-x86/src/crypto/elliptic/
p256_amd64.go 484 wvalue := (scalar[0] << 1) & 0xff
485 sel, sign := boothW7(uint(wvalue))
507 wvalue = ((scalar[index/64] >> (index % 64)) + (scalar[index/64+1] << (64 - (index % 64)))) & 0xff
509 wvalue = (scalar[index/64] >> (index % 64)) & 0xff
512 sel, sign = boothW7(uint(wvalue))
568 wvalue := (scalar[index/64] >> (index % 64)) & 0x3f
569 sel, _ = boothW5(uint(wvalue))
583 wvalue = ((scalar[index/64] >> (index % 64)) + (scalar[index/64+1] << (64 - (index % 64)))) & 0x3f
585 wvalue = (scalar[index/64] >> (index % 64)) & 0x3f
588 sel, sign = boothW5(uint(wvalue))
    [all...]
p256_s390x.go 435 wvalue := (uint(scalar[31]) << 1) & 0xff
436 sel, sign := boothW7(uint(wvalue))
450 wvalue = ((uint(scalar[31-index/8]) >> (index % 8)) + (uint(scalar[31-index/8-1]) << (8 - (index % 8)))) & 0xff
452 wvalue = (uint(scalar[31-index/8]) >> (index % 8)) & 0xff
455 sel, sign = boothW7(uint(wvalue))
511 wvalue := (uint(scalar[31-index/8]) >> (index % 8)) & 0x3f
512 sel, _ = boothW5(uint(wvalue))
525 wvalue = ((uint(scalar[31-index/8]) >> (index % 8)) + (uint(scalar[31-index/8-1]) << (8 - (index % 8)))) & 0x3f
527 wvalue = (uint(scalar[31-index/8]) >> (index % 8)) & 0x3f
530 sel, sign = boothW5(uint(wvalue))
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Drivers/Usb/DwUsb3Dxe/
DwUsb3Dxe.c 1722 UINT16 wvalue = ctrl->wValue; local
    [all...]
  /external/python/cpython3/Modules/_ctypes/
cfield.c 1419 wchar_t* wvalue; local
    [all...]

Completed in 840 milliseconds