HomeSort by relevance Sort by last modified time
    Searched full:goto (Results 1 - 25 of 3079) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/dropbear/libtomcrypt/src/pk/ecc/
ltc_ecc_projective_add_point.c 51 if ((err = mp_sub(modulus, Q->y, t1)) != CRYPT_OK) { goto done; }
60 if ((err = mp_copy(P->x, x)) != CRYPT_OK) { goto done; }
61 if ((err = mp_copy(P->y, y)) != CRYPT_OK) { goto done; }
62 if ((err = mp_copy(P->z, z)) != CRYPT_OK) { goto done; }
67 if ((err = mp_sqr(Q->z, t1)) != CRYPT_OK) { goto done; }
68 if ((err = mp_montgomery_reduce(t1, modulus, mp)) != CRYPT_OK) { goto done; }
70 if ((err = mp_mul(t1, x, x)) != CRYPT_OK) { goto done; }
71 if ((err = mp_montgomery_reduce(x, modulus, mp)) != CRYPT_OK) { goto done; }
73 if ((err = mp_mul(Q->z, t1, t1)) != CRYPT_OK) { goto done; }
74 if ((err = mp_montgomery_reduce(t1, modulus, mp)) != CRYPT_OK) { goto done;
    [all...]
ltc_ecc_projective_dbl_point.c 49 if ((err = mp_copy(P->x, R->x)) != CRYPT_OK) { goto done; }
50 if ((err = mp_copy(P->y, R->y)) != CRYPT_OK) { goto done; }
51 if ((err = mp_copy(P->z, R->z)) != CRYPT_OK) { goto done; }
55 if ((err = mp_sqr(R->z, t1)) != CRYPT_OK) { goto done; }
56 if ((err = mp_montgomery_reduce(t1, modulus, mp)) != CRYPT_OK) { goto done; }
58 if ((err = mp_mul(R->z, R->y, R->z)) != CRYPT_OK) { goto done; }
59 if ((err = mp_montgomery_reduce(R->z, modulus, mp)) != CRYPT_OK) { goto done; }
61 if ((err = mp_add(R->z, R->z, R->z)) != CRYPT_OK) { goto done; }
63 if ((err = mp_sub(R->z, modulus, R->z)) != CRYPT_OK) { goto done; }
67 if ((err = mp_sub(R->x, t1, t2)) != CRYPT_OK) { goto done;
    [all...]
ecc_test.c 53 if ((err = mp_read_radix(modulus, (char *)ltc_ecc_sets[i].prime, 16)) != CRYPT_OK) { goto done; }
54 if ((err = mp_read_radix(order, (char *)ltc_ecc_sets[i].order, 16)) != CRYPT_OK) { goto done; }
57 if ((err = mp_prime_is_prime(modulus, 8, &primality)) != CRYPT_OK) { goto done; }
60 goto done;
64 if ((err = mp_prime_is_prime(order, 8, &primality)) != CRYPT_OK) { goto done; }
67 goto done;
70 if ((err = mp_read_radix(G->x, (char *)ltc_ecc_sets[i].Gx, 16)) != CRYPT_OK) { goto done; }
71 if ((err = mp_read_radix(G->y, (char *)ltc_ecc_sets[i].Gy, 16)) != CRYPT_OK) { goto done; }
75 if ((err = mp_add_d(order, 1, order)) != CRYPT_OK) { goto done; }
76 if ((err = ltc_mp.ecc_ptmul(order, G, GG, modulus, 1)) != CRYPT_OK) { goto done;
    [all...]
ltc_ecc_map.c 47 if ((err = mp_montgomery_reduce(P->z, modulus, mp)) != CRYPT_OK) { goto done; }
50 if ((err = mp_invmod(P->z, modulus, t1)) != CRYPT_OK) { goto done; }
53 if ((err = mp_sqr(t1, t2)) != CRYPT_OK) { goto done; }
54 if ((err = mp_mod(t2, modulus, t2)) != CRYPT_OK) { goto done; }
55 if ((err = mp_mul(t1, t2, t1)) != CRYPT_OK) { goto done; }
56 if ((err = mp_mod(t1, modulus, t1)) != CRYPT_OK) { goto done; }
59 if ((err = mp_mul(P->x, t2, P->x)) != CRYPT_OK) { goto done; }
60 if ((err = mp_montgomery_reduce(P->x, modulus, mp)) != CRYPT_OK) { goto done; }
61 if ((err = mp_mul(P->y, t1, P->y)) != CRYPT_OK) { goto done; }
62 if ((err = mp_montgomery_reduce(P->y, modulus, mp)) != CRYPT_OK) { goto done;
    [all...]
  /external/dropbear/libtommath/
bn_mp_toom_sqr.c 35 goto ERR;
39 goto ERR;
45 goto ERR;
51 goto ERR;
56 goto ERR;
61 goto ERR;
64 goto ERR;
67 goto ERR;
70 goto ERR;
74 goto ERR
    [all...]
bn_mp_toom_mul.c 42 goto ERR;
46 goto ERR;
52 goto ERR;
58 goto ERR;
62 goto ERR;
68 goto ERR;
74 goto ERR;
79 goto ERR;
84 goto ERR;
87 goto ERR
    [all...]
bn_mp_invmod_slow.c 37 goto LBL_ERR;
40 goto LBL_ERR;
46 goto LBL_ERR;
51 goto LBL_ERR;
54 goto LBL_ERR;
64 goto LBL_ERR;
70 goto LBL_ERR;
73 goto LBL_ERR;
78 goto LBL_ERR;
81 goto LBL_ERR
    [all...]
bn_mp_karatsuba_sqr.c 40 goto ERR;
42 goto X0;
46 goto X1;
48 goto T1;
50 goto T2;
52 goto X0X0;
79 goto X1X1; /* x0x0 = x0*x0 */
81 goto X1X1; /* x1x1 = x1*x1 */
85 goto X1X1; /* t1 = x1 - x0 */
87 goto X1X1; /* t1 = (x1 - x0) * (x1 - x0) *
    [all...]
bn_mp_exteuclid.c 32 if ((err = mp_copy(a, &u3)) != MP_OKAY) { goto _ERR; }
36 if ((err = mp_copy(b, &v3)) != MP_OKAY) { goto _ERR; }
41 if ((err = mp_div(&u3, &v3, &q, NULL)) != MP_OKAY) { goto _ERR; }
44 if ((err = mp_mul(&v1, &q, &tmp)) != MP_OKAY) { goto _ERR; }
45 if ((err = mp_sub(&u1, &tmp, &t1)) != MP_OKAY) { goto _ERR; }
46 if ((err = mp_mul(&v2, &q, &tmp)) != MP_OKAY) { goto _ERR; }
47 if ((err = mp_sub(&u2, &tmp, &t2)) != MP_OKAY) { goto _ERR; }
48 if ((err = mp_mul(&v3, &q, &tmp)) != MP_OKAY) { goto _ERR; }
49 if ((err = mp_sub(&u3, &tmp, &t3)) != MP_OKAY) { goto _ERR; }
52 if ((err = mp_copy(&v1, &u1)) != MP_OKAY) { goto _ERR;
    [all...]
bn_mp_reduce.c 38 goto CLEANUP;
43 goto CLEANUP;
47 goto CLEANUP;
52 goto CLEANUP;
62 goto CLEANUP;
67 goto CLEANUP;
72 goto CLEANUP;
79 goto CLEANUP;
81 goto CLEANUP;
87 goto CLEANUP
    [all...]
  /dalvik/vm/mterp/portable/
stubdefs.c 2 * In the C mterp stubs, "goto" is a function call followed immediately
17 * case/break, for a threaded implementation it's a goto label and an
18 * instruction fetch/computed goto.
34 goto *handlerTable[INST_INST(inst)]; \
37 goto *handlerTable[_opcode]; \
56 * The "goto" targets just turn into goto statements. The "arguments" are
60 #define GOTO_exceptionThrown() goto exceptionThrown;
62 #define GOTO_returnFromMethod() goto returnFromMethod;
67 goto _target;
    [all...]
  /dalvik/vm/mterp/c/
OP_GOTO.c 4 ILOGV("|goto -0x%02x", -((s1)vdst));
6 ILOGV("|goto +0x%02x", ((s1)vdst));
OP_GOTO_16.c 6 ILOGV("|goto/16 -0x%04x", -offset);
8 ILOGV("|goto/16 +0x%04x", offset);
OP_GOTO_32.c 7 ILOGV("|goto/32 -0x%08x", -offset);
9 ILOGV("|goto/32 +0x%08x", offset);
  /device/samsung/crespo/alsa-lib/src/pcm/
plugin_ops.h 101 copy_8: as_s8(dst) = as_s8c(src); goto COPY_END;
102 copy_16: as_s16(dst) = as_s16c(src); goto COPY_END;
103 copy_24: memcpy(dst,src,3); goto COPY_END;
104 copy_32: as_s32(dst) = as_s32c(src); goto COPY_END;
105 copy_64: as_s64(dst) = as_s64c(src); goto COPY_END;
245 conv_xxx1_xxx1: as_u8(dst) = as_u8c(src); goto CONV_END;
246 conv_xxx1_xx10: as_u16(dst) = (u_int16_t)as_u8c(src) << 8; goto CONV_END;
247 conv_xxx1_xx01: as_u16(dst) = (u_int16_t)as_u8c(src); goto CONV_END;
248 conv_xxx1_x100: as_u32(dst) = sx24((u_int32_t)as_u8c(src) << 16); goto CONV_END;
249 conv_xxx1_001x: as_u32(dst) = sx24s((u_int32_t)as_u8c(src) << 8); goto CONV_END
    [all...]
  /external/openssl/crypto/ec/
ecp_smpl.c 191 if (tmp_a == NULL) goto err;
194 if (!BN_copy(&group->field, p)) goto err;
198 if (!BN_nnmod(tmp_a, a, p, ctx)) goto err;
200 { if (!group->meth->field_encode(group, &group->a, tmp_a, ctx)) goto err; }
202 if (!BN_copy(&group->a, tmp_a)) goto err;
205 if (!BN_nnmod(&group->b, b, p, ctx)) goto err;
207 if (!group->meth->field_encode(group, &group->b, &group->b, ctx)) goto err;
210 if (!BN_add_word(tmp_a, 3)) goto err;
245 if (!group->meth->field_decode(group, a, &group->a, ctx)) goto err;
249 if (!group->meth->field_decode(group, b, &group->b, ctx)) goto err
    [all...]
ec2_mult.c 90 if (t1 == NULL) goto err;
92 if (!group->meth->field_sqr(group, x, x, ctx)) goto err;
93 if (!group->meth->field_sqr(group, t1, z, ctx)) goto err;
94 if (!group->meth->field_mul(group, z, x, t1, ctx)) goto err;
95 if (!group->meth->field_sqr(group, x, x, ctx)) goto err;
96 if (!group->meth->field_sqr(group, t1, t1, ctx)) goto err;
97 if (!group->meth->field_mul(group, t1, &group->b, t1, ctx)) goto err;
98 if (!BN_GF2m_add(x, x, t1)) goto err;
123 if (t2 == NULL) goto err;
125 if (!BN_copy(t1, x)) goto err
    [all...]
  /external/stlport/
configure.bat 17 if NOT "%1xyz123" == "xyz123" goto init
21 goto skp_comp
34 if "%1" == "-?" goto opt_help
35 if "%1" == "-h" goto opt_help
36 if "%1" == "/?" goto opt_help
37 if "%1" == "/h" goto opt_help
38 if "%1" == "--help" goto opt_help
41 goto opt_comp
49 if "%1" == "-p" goto opt_plat
50 if "%1" == "/p" goto opt_pla
    [all...]
  /external/dropbear/libtomcrypt/src/pk/asn1/der/sequence/
der_decode_sequence_ex.c 100 goto LBL_ERR;
103 goto LBL_ERR;
111 goto LBL_ERR;
114 goto LBL_ERR;
122 goto LBL_ERR;
125 goto LBL_ERR;
134 goto LBL_ERR;
138 goto LBL_ERR;
146 goto LBL_ERR;
150 goto LBL_ERR
    [all...]
  /device/samsung/crespo/alsa-utils/alsactl/init/
00main 8 ENV{CMD}=="help", INCLUDE="help", GOTO="00main_end"
9 ENV{CMD}=="info", INCLUDE="info", GOTO="00main_end"
10 ENV{CMD}=="default", INCLUDE="default", GOTO="00main_end"
11 ENV{CMD}=="test", INCLUDE="test", GOTO="00main_end"
12 ENV{CMD}=="*", ERROR="Unknown command '$env{CMD}'\n", GOTO="00main_end"
28 RESULT=="skip", GOTO="init_end"
31 CARDINFO{driver}=="HDA-Intel", INCLUDE="hda", GOTO="init_end"
32 CARDINFO{driver}=="Test", INCLUDE="test", GOTO="init_end"
36 RESULT=="true", GOTO="00_mainend"
  /external/quake/quake/src/WinQuake/
wq.bat 2 if x%1==xfast goto fast
3 if x%1==xsafe goto safe
4 if x%1==xverysafe goto verysafe
5 if x%1==xfastvid goto fastvid
6 if x%1==xfastsnd goto fastsnd
7 if x%1==xmax goto max
18 goto done
22 goto done
26 goto done
30 goto done
    [all...]
  /external/dropbear/libtomcrypt/src/pk/katja/
katja_make_key.c 52 if ((err = rand_prime(q, -size, prng, wprng)) != CRYPT_OK) { goto done; }
53 if ((err = mp_sub_d(q, 1, tmp1)) != CRYPT_OK) { goto done; }
57 if ((err = rand_prime(p, size+1, prng, wprng)) != CRYPT_OK) { goto done; }
58 if ((err = mp_gcd(p, tmp1, tmp2)) != CRYPT_OK) { goto done; }
64 goto error;
68 if ((err = mp_copy( p, key->p)) != CRYPT_OK) { goto error2; }
69 if ((err = mp_copy( q, key->q)) != CRYPT_OK) { goto error2; }
70 if ((err = mp_mul(key->p, key->q, key->pq)) != CRYPT_OK) { goto error2; } /* tmp1 = pq */
71 if ((err = mp_mul(key->pq, key->p, key->N)) != CRYPT_OK) { goto error2; } /* N = p^2q */
72 if ((err = mp_sub_d( p, 1, tmp1)) != CRYPT_OK) { goto error2; } /* tmp1 = q-1 *
    [all...]
  /dalvik/tests/003-omnibus-opcodes/
expected.txt 56 Goto.smallGoto
57 Goto.smallGoto
58 Goto.mediumGoto
59 Goto.mediumGoto
60 Goto.bigGoto
61 Goto.bigGoto
  /external/iproute2/tc/
p_ip.c 40 goto done;
46 goto done;
56 goto done;
62 goto done;
68 goto done;
75 goto done;
82 goto done;
89 goto done;
95 goto done;
101 goto done
    [all...]
  /external/bison/djgpp/
config.bat 37 if not "%NLS%" == "enabled" goto SmallEnv
39 if not "%CACHING%" == "enabled" goto SmallEnv
41 if not "%DEPENDENCY_TRACKING%" == "disabled" goto SmallEnv
43 if not "%LIBICONV_PREFIX%" == "disabled" goto SmallEnv
45 if not "%LIBINTL_PREFIX%" == "disabled" goto SmallEnv
47 if not "%HTML%" == "enabled" goto SmallEnv
49 if not "%XSRC%" == "." goto SmallEnv
55 if "%1" == "nls" goto NextArgument
56 if "%1" == "NLS" goto NextArgument
57 if "%1" == "no-nls" goto NoNLS
    [all...]

Completed in 1349 milliseconds

1 2 3 4 5 6 7 8 91011>>