Home
last modified time | relevance | path

Searched refs:state2 (Results 1 – 5 of 5) sorted by relevance

/device/google/contexthub/lib/nanohub/
Drsa.c23 …32_t *num, const uint32_t *denum, uint32_t *tmp, uint32_t *state1, uint32_t *state2, uint32_t step) in biModIterative() argument
27 uint32_t bitsh = *state1, limbsh = *state2; in biModIterative()
108 *state2 = limbsh; in biModIterative()
168 …* state, const uint32_t *a, const uint32_t *c, uint32_t *state1, uint32_t *state2, uint32_t *stepP) in rsaPubOpIterative() argument
193 …if (biModIterative(state->tmpA, c, state->tmpB, state1, state2, gigastepSubstep - RSA_LEN)) { //MO… in rsaPubOpIterative()
217 uint32_t state1 = 0, state2 = 0, step = 0, ns = 0; in rsaPubOp() local
220 ret = rsaPubOpIterative(state, a, c, &state1, &state2, &step); in rsaPubOp()
231 uint32_t state1 = 0, state2 = 0, step; in biMod() local
233 for (step = 0; !biModIterative(num, denum, tmp, &state1, &state2, step); step++); in biMod()
/device/google/contexthub/lib/include/nanohub/
Drsa.h39 … state, const uint32_t *a, const uint32_t *c, uint32_t *state1, uint32_t *state2, uint32_t *stepP);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_random.py26 state2 = self.gen.getstate()
27 self.assertNotEqual(state1, state2)
50 state2 = self.gen.getstate() # s/b distinct from state1
51 self.assertNotEqual(state1, state2)
54 self.assertNotEqual(state2, state3)
/device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
DLzmaEnc.c1315 UInt32 state2 = kLiteralNextStates[state]; in GetOptimum() local
1318 GET_PRICE_1(p->isMatch[state2][posStateNext]) + in GetOptimum()
1319 GET_PRICE_1(p->isRep[state2]); in GetOptimum()
1327 curAndLenPrice = nextRepMatchPrice + GetRepPrice(p, 0, lenTest2, state2, posStateNext); in GetOptimum()
1386 UInt32 state2 = kRepNextStates[state]; in GetOptimum() local
1390 GET_PRICE_0(p->isMatch[state2][posStateNext]) + in GetOptimum()
1393 state2 = kLiteralNextStates[state2]; in GetOptimum()
1396 GET_PRICE_1(p->isMatch[state2][posStateNext]) + in GetOptimum()
1397 GET_PRICE_1(p->isRep[state2]); in GetOptimum()
1406 … curAndLenPrice = nextRepMatchPrice + GetRepPrice(p, 0, lenTest2, state2, posStateNext); in GetOptimum()
[all …]
/device/google/contexthub/firmware/os/inc/
Dbl.h62 … state, const uint32_t *a, const uint32_t *c, uint32_t *state1, uint32_t *state2, uint32_t *stepP);