Home
last modified time | relevance | path

Searched refs:mod (Results 1 – 25 of 131) sorted by relevance

123456

/external/fsck_msdos/
Dcheck.c65 int mod = 0; in checkfilesys() local
115 mod |= readfat(dosfs, &boot, boot.ValidFat >= 0 ? boot.ValidFat : 0, &fat); in checkfilesys()
116 if (mod & FSFATAL) { in checkfilesys()
126 mod |= readfat(dosfs, &boot, i, &currentFat); in checkfilesys()
128 if (mod & FSFATAL) { in checkfilesys()
133 mod |= comparefat(&boot, fat, currentFat, i); in checkfilesys()
135 if (mod & FSFATAL) { in checkfilesys()
144 mod |= checkfat(&boot, fat); in checkfilesys()
145 if (mod & FSFATAL) { in checkfilesys()
154 mod |= resetDosDirSection(&boot, fat); in checkfilesys()
[all …]
Ddir.c445 int mod = FSOK; in readDosDirSection() local
510 mod |= THISMOD|FSDIRMOD; in readDosDirSection()
516 mod |= THISMOD|FSDIRMOD; in readDosDirSection()
519 mod |= FSERROR; in readDosDirSection()
621 mod |= removede(f, boot, fat, in readDosDirSection()
660 mod |= k = removede(f, boot, fat, in readDosDirSection()
664 if (mod & FSFATAL) in readDosDirSection()
670 mod |= THISMOD; in readDosDirSection()
686 mod |= THISMOD|FSDIRMOD|FSFATMOD; in readDosDirSection()
688 mod |= FSERROR; in readDosDirSection()
[all …]
/external/e2fsprogs/tests/f_dup4/
Dexpect.117 File /dir/foo (inode #16, mod time Tue Apr 10 21:00:00 2007)
19 /dir/quux1 (inode #19, mod time Tue Apr 10 21:00:00 2007)
20 /dir3/baz (inode #18, mod time Tue Apr 10 21:00:00 2007)
21 /dir2/bar (inode #17, mod time Tue Apr 10 21:00:00 2007)
24 File /dir2/bar (inode #17, mod time Tue Apr 10 21:00:00 2007)
26 /dir/quux1 (inode #19, mod time Tue Apr 10 21:00:00 2007)
27 /dir3/baz (inode #18, mod time Tue Apr 10 21:00:00 2007)
28 /dir/foo (inode #16, mod time Tue Apr 10 21:00:00 2007)
31 File /dir3/baz (inode #18, mod time Tue Apr 10 21:00:00 2007)
33 /dir/quux1 (inode #19, mod time Tue Apr 10 21:00:00 2007)
[all …]
/external/qemu/distrib/sdl-1.2.12/src/video/nanox/
DSDL_nxevents.c127 keysym -> mod = KMOD_NONE ; in NX_TranslateKey()
131 GR_KEYMOD mod = keystroke -> modifiers ; in NX_TranslateKey() local
133 if (mod & MWKMOD_LSHIFT) in NX_TranslateKey()
134 keysym -> mod |= KMOD_LSHIFT ; in NX_TranslateKey()
135 if (mod & MWKMOD_RSHIFT) in NX_TranslateKey()
136 keysym -> mod |= KMOD_RSHIFT ; in NX_TranslateKey()
137 if (mod & MWKMOD_LCTRL) in NX_TranslateKey()
138 keysym -> mod |= KMOD_LCTRL ; in NX_TranslateKey()
139 if (mod & MWKMOD_RCTRL) in NX_TranslateKey()
140 keysym -> mod |= KMOD_RCTRL ; in NX_TranslateKey()
[all …]
/external/qemu/distrib/sdl-1.2.12/src/video/
DSDL_yuv_mmx.c83 int rows, int cols, int mod ) in ColorRGBDitherYV12MMX1X() argument
91 row2 = (Uint32 *)out+cols+mod; // start of second row in ColorRGBDitherYV12MMX1X()
92 mod = (mod+cols+mod)*4; // increment for row1 in byte in ColorRGBDitherYV12MMX1X()
234 "r"(row1),"r"(cols),"r"(row2),"m"(x),"m"(y),"m"(mod), in ColorRGBDitherYV12MMX1X()
244 int rows, int cols, int mod ) in Color565DitherYV12MMX1X() argument
252 row2 = (Uint16 *)out+cols+mod; /* start of second row */ in Color565DitherYV12MMX1X()
253 mod = (mod+cols+mod)*2; /* increment for row1 in byte */ in Color565DitherYV12MMX1X()
418 "r"(row1),"r"(cols),"r"(row2),"m"(x),"m"(y),"m"(mod), in Color565DitherYV12MMX1X()
DSDL_yuv_sw.c110 int rows, int cols, int mod );
114 int rows, int cols, int mod );
128 int rows, int cols, int mod );
132 int rows, int cols, int mod );
138 int rows, int cols, int mod ) in Color16DitherYV12Mod1X() argument
150 row2 = row1 + cols + mod; in Color16DitherYV12Mod1X()
153 mod += cols + mod; in Color16DitherYV12Mod1X()
200 row1 += mod; in Color16DitherYV12Mod1X()
201 row2 += mod; in Color16DitherYV12Mod1X()
208 int rows, int cols, int mod ) in Color24DitherYV12Mod1X() argument
[all …]
/external/webkit/V8Binding/v8/src/ia32/
Ddisasm-ia32.cc288 static void get_modrm(byte data, int* mod, int* regop, int* rm) { in get_modrm() argument
289 *mod = (data >> 6) & 3; in get_modrm()
340 int mod, regop, rm; in PrintRightOperandHelper() local
341 get_modrm(*modrmp, &mod, &regop, &rm); in PrintRightOperandHelper()
342 switch (mod) { in PrintRightOperandHelper()
385 mod == 2 ? *reinterpret_cast<int32_t*>(modrmp + 2) : *(modrmp + 2); in PrintRightOperandHelper()
395 return mod == 2 ? 6 : 3; in PrintRightOperandHelper()
399 mod == 2 ? *reinterpret_cast<int32_t*>(modrmp + 1) : *(modrmp + 1); in PrintRightOperandHelper()
401 return mod == 2 ? 5 : 2; in PrintRightOperandHelper()
432 int mod, regop, rm; in PrintOperands() local
[all …]
/external/qemu/android/skin/
Dkeyset.c222 skin_key_symmod_to_str( int sym, int mod ) in skin_key_symmod_to_str() argument
229 if ((mod & KMOD_LCTRL) != 0) { in skin_key_symmod_to_str()
232 if ((mod & KMOD_RCTRL) != 0) { in skin_key_symmod_to_str()
235 if ((mod & KMOD_LSHIFT) != 0) { in skin_key_symmod_to_str()
238 if ((mod & KMOD_RSHIFT) != 0) { in skin_key_symmod_to_str()
241 if ((mod & KMOD_LALT) != 0) { in skin_key_symmod_to_str()
244 if ((mod & KMOD_RALT) != 0) { in skin_key_symmod_to_str()
266 int mod = 0; in skin_key_symmod_from_str() local
270 static const struct { const char* prefix; int mod; } mods[] = in skin_key_symmod_from_str() member
297 mod |= mods[nn].mod; in skin_key_symmod_from_str()
[all …]
Dkeyboard.c35 int mod; /* SDL key modifier value */ member
162 int mod, in skin_keyboard_add_last() argument
169 k->mod = mod; in skin_keyboard_add_last()
241 int mod, in skin_keyboard_key_to_code() argument
245 int mod0 = mod; in skin_keyboard_key_to_code()
251 mod &= (KMOD_CTRL | KMOD_ALT | KMOD_SHIFT); in skin_keyboard_key_to_code()
262 D("handling arrow (sym=%d mod=%d)", sym, mod); in skin_keyboard_key_to_code()
269 mod = k->mod; in skin_keyboard_key_to_code()
273 skin_keyboard_add_last( keyboard, sym, mod, 0); in skin_keyboard_key_to_code()
276 doCapL = (mod & 0x7ff) & KMOD_LSHIFT; in skin_keyboard_key_to_code()
[all …]
Dkeyset.h83 extern const char* skin_key_symmod_to_str ( int sym, int mod );
105 int mod; // really a SDL key modifier member
115 extern SkinKeyCommand skin_keyset_get_command( SkinKeyset* kset, int sym, int mod );
/external/webkit/V8Binding/v8/src/x64/
Ddisasm-x64.cc373 int* mod, in get_modrm() argument
376 *mod = (data >> 6) & 3; in get_modrm()
435 int mod, regop, rm; in PrintRightOperandHelper() local
436 get_modrm(*modrmp, &mod, &regop, &rm); in PrintRightOperandHelper()
437 switch (mod) { in PrintRightOperandHelper()
482 int disp = (mod == 2) ? *reinterpret_cast<int32_t*>(modrmp + 2) in PrintRightOperandHelper()
505 return mod == 2 ? 6 : 3; in PrintRightOperandHelper()
508 int disp = (mod == 2) ? *reinterpret_cast<int32_t*>(modrmp + 1) in PrintRightOperandHelper()
515 return (mod == 2) ? 5 : 2; in PrintRightOperandHelper()
577 int mod, regop, rm; in PrintOperands() local
[all …]
/external/openssl/crypto/bn/
Dbn_blind.c123 BIGNUM *mod; /* just a reference */ member
134 BN_BLINDING *BN_BLINDING_new(const BIGNUM *A, const BIGNUM *Ai, /* const */ BIGNUM *mod) in BN_BLINDING_new() argument
138 bn_check_top(mod); in BN_BLINDING_new()
156 if ((ret->mod = BN_dup(mod)) == NULL) goto err; in BN_BLINDING_new()
157 if (BN_get_flags(mod, BN_FLG_CONSTTIME) != 0) in BN_BLINDING_new()
158 BN_set_flags(ret->mod, BN_FLG_CONSTTIME); in BN_BLINDING_new()
175 if (r->mod != NULL) BN_free(r->mod); in BN_BLINDING_free()
198 if (!BN_mod_mul(b->A,b->A,b->A,b->mod,ctx)) goto err; in BN_BLINDING_update()
199 if (!BN_mod_mul(b->Ai,b->Ai,b->Ai,b->mod,ctx)) goto err; in BN_BLINDING_update()
231 if (!BN_mod_mul(n,n,b->A,b->mod,ctx)) ret=0; in BN_BLINDING_convert_ex()
[all …]
Dexp.c17 int j,i,size=SIZE,num=NUM,mod=MOD; local
55 d,num,d/num,(int)((d/num)*mod),md/10.0);
57 mod/=8;
/external/opencore/codecs_v2/audio/aac/dec/src/
Dunpack_idx.cpp340 const Int mod = pHuffCodebook->mod; in unpack_idx() local
385 temp_spec = ((Int32) codeword_indx * div_mod[mod]) >> Q_FORMAT_MOD; in unpack_idx()
387 codeword_indx -= temp_spec * mod; in unpack_idx()
431 const Int mod = pHuffCodebook->mod; in unpack_idx_sgn() local
496 temp_spec = ((Int32) codeword_indx * div_mod[mod]) >> Q_FORMAT_MOD; in unpack_idx_sgn()
498 codeword_indx -= temp_spec * mod; in unpack_idx_sgn()
560 const Int mod = pHuffCodebook->mod; in unpack_idx_esc() local
564 temp_spec = ((Int32) codeword_indx * div_mod[mod]) >> Q_FORMAT_MOD; in unpack_idx_esc()
566 codeword_indx -= temp_spec * mod; in unpack_idx_esc()
/external/ipsec-tools/src/racoon/
Deaytest.c743 vchar_t mod; local
766 mod.v = str2val(r_hmd5, 16, &mod.l);
767 if (memcmp(res->v, mod.v, mod.l)) {
771 free(mod.v);
781 mod.v = str2val(r_hmd5, 16, &mod.l);
782 if (memcmp(res->v, mod.v, mod.l)) {
786 free(mod.v);
793 mod.v = str2val(r_hsha1, 16, &mod.l);
794 if (memcmp(res->v, mod.v, mod.l)) {
798 free(mod.v);
[all …]
/external/e2fsprogs/tests/f_dup2/
Dexpect.114 File /termcap (inode #12, mod time Tue Sep 21 03:19:14 1993)
16 /motd (inode #13, mod time Tue Sep 21 03:19:20 1993)
19 File /motd (inode #13, mod time Tue Sep 21 03:19:20 1993)
21 /pass1.c (inode #14, mod time Tue Sep 21 04:28:37 1993)
22 /termcap (inode #12, mod time Tue Sep 21 03:19:14 1993)
25 File /pass1.c (inode #14, mod time Tue Sep 21 04:28:37 1993)
27 /motd (inode #13, mod time Tue Sep 21 03:19:20 1993)
/external/dropbear/libtommath/
Dposter.tex10 $b = a^2 $ & {\tt mp\_sqr(\&a, \&b)} & $c = a/2^b, d = a \mod 2^b$ & {\tt mp\_div\_2d(\&a, b…
11 $c = \lfloor a/b \rfloor, d = a \mod b$ & {\tt mp\_div(\&a, \&b, \&c, \&d)} & $c = a \mod 2^b $ & …
17 $b = -a $ & {\tt mp\_neg(\&a, \&b)} & $d = a + b \mod c$ & {\tt mp\_addmod(\&a, \&b, \&c, \&d)} …
18 $b = |a| $ & {\tt mp\_abs(\&a, \&b)} & $d = a - b \mod c$ & {\tt mp\_submod(\&a, \&b, \&c, \&d)} …
19 && $d = ab \mod c$ & {\tt mp\_mulmod(\&a, \&b, \&c, \&d)} \\
20 Compare $a$ and $b$ & {\tt mp\_cmp(\&a, \&b)} & $c = a^2 \mod b$ & {\tt mp\_sqrmod(\&a, \&b, \&c)}…
21 Is Zero? & {\tt mp\_iszero(\&a)} & $c = a^{-1} \mod b$ & {\tt mp\_invmod(\&a, \&b, \&c)} \\
22 Is Even? & {\tt mp\_iseven(\&a)} & $d = a^b \mod c$ & {\tt mp\_exptmod(\&a, \&b, \&c, \&d)} \\
/external/e2fsprogs/tests/f_dupfsblks/
Dexpect.118 File /foo (inode #12, mod time Thu Apr 28 17:57:53 1994)
21 /bar (inode #13, mod time Thu Aug 5 07:17:17 1999)
24 File /bar (inode #13, mod time Thu Aug 5 07:17:17 1999)
27 /foo (inode #12, mod time Thu Apr 28 17:57:53 1994)
28 /quux (inode #14, mod time Thu Aug 5 07:18:09 1999)
31 File /quux (inode #14, mod time Thu Aug 5 07:18:09 1999)
34 /bar (inode #13, mod time Thu Aug 5 07:17:17 1999)
/external/e2fsprogs/tests/f_bbfile/
Dexpect.117 File / (inode #2, mod time Sun Jan 2 08:29:13 1994)
19 <The bad blocks inode> (inode #1, mod time Sun Jul 17 00:47:58 1994)
22 File /lost+found (inode #11, mod time Sun Jan 2 08:28:40 1994)
24 <The bad blocks inode> (inode #1, mod time Sun Jul 17 00:47:58 1994)
27 File /termcap (inode #12, mod time Sun Jan 2 08:29:13 1994)
29 <The bad blocks inode> (inode #1, mod time Sun Jul 17 00:47:58 1994)
/external/grub/docs/
Dkernel.c89 module_t *mod; in cmain() local
94 for (i = 0, mod = (module_t *) mbi->mods_addr; in cmain()
96 i++, mod++) in cmain()
98 (unsigned) mod->mod_start, in cmain()
99 (unsigned) mod->mod_end, in cmain()
100 (char *) mod->string); in cmain()
/external/openssl/crypto/objects/
Dobjects.txt221 SMIME 0 : id-smime-mod
230 id-smime-mod 1 : id-smime-mod-cms
231 id-smime-mod 2 : id-smime-mod-ess
232 id-smime-mod 3 : id-smime-mod-oid
233 id-smime-mod 4 : id-smime-mod-msg-v3
234 id-smime-mod 5 : id-smime-mod-ets-eSignature-88
235 id-smime-mod 6 : id-smime-mod-ets-eSignature-97
236 id-smime-mod 7 : id-smime-mod-ets-eSigPolicy-88
237 id-smime-mod 8 : id-smime-mod-ets-eSigPolicy-97
405 id-pkix 0 : id-pkix-mod
[all …]
/external/dropbear/libtomcrypt/notes/
Dtech0006.txt26 g INTEGER , -- base generator, check that g^q mod p == 1
30 y INTEGER , -- public key, specifically, g^x mod p,
31 -- check that y^q mod p == 1
37 g INTEGER , -- base generator, check that g^q mod p == 1
41 y INTEGER , -- public key, specifically, g^x mod p,
42 -- check that y^q mod p == 1
/external/e2fsprogs/tests/f_dup/
Dexpect.113 File /termcap (inode #12, mod time Tue Sep 21 03:19:14 1993)
15 /motd (inode #13, mod time Tue Sep 21 03:19:20 1993)
18 File /motd (inode #13, mod time Tue Sep 21 03:19:20 1993)
20 /termcap (inode #12, mod time Tue Sep 21 03:19:14 1993)
/external/strace/
Dbjm.c136 char* mod = data; local
147 tprintf(mod);
148 mod+=strlen(mod)+1;
/external/openssl/crypto/dh/
Dgenerate16 >Diffie-Hellman public key exchange algorithm: y=a^x mod q. I'm
46 If you want 2 to be a generator (mod P), then you need it
50 In the case at hand, this means 2 is a generator iff P = 11 (mod 24).
53 3 is a generator iff P = 5 (mod 12).
55 5 is a generator iff P = 3 or 7 (mod 10).

123456