HomeSort by relevance Sort by last modified time
    Searched defs:mod (Results 1 - 25 of 77) sorted by null

1 2 3 4

  /external/opencore/codecs_v2/audio/aac/dec/src/
s_hcb.h 108 Int mod; member in struct:__anon3445
unpack_idx.cpp 31 look-up method for calculating 1/mod and constant allocation of 1/mod^3
32 and 1/mod^2.
80 const UInt div_mod[18] = An array with the values for 1/mod
115 HuffCodebook->mod = {3, 8, 9, 13, 17};
117 mod = LAV + 1 if unsigned codebook
118 mod = 2*LAV + 1 if signed codebook
126 This restricts mod == 3 if dim == 4
127 and mod == {3, 8, 9, 13, 17} if dim == 2
182 *(pQuantSpec) = codeword_indx/mod;
340 const Int mod = pHuffCodebook->mod; local
431 const Int mod = pHuffCodebook->mod; local
560 const Int mod = pHuffCodebook->mod; local
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacdec/
s_hcb.h 108 Int mod; member in struct:__anon7347
unpack_idx.cpp 31 look-up method for calculating 1/mod and constant allocation of 1/mod^3
32 and 1/mod^2.
80 const UInt div_mod[18] = An array with the values for 1/mod
115 HuffCodebook->mod = {3, 8, 9, 13, 17};
117 mod = LAV + 1 if unsigned codebook
118 mod = 2*LAV + 1 if signed codebook
126 This restricts mod == 3 if dim == 4
127 and mod == {3, 8, 9, 13, 17} if dim == 2
182 *(pQuantSpec) = codeword_indx/mod;
340 const Int mod = pHuffCodebook->mod; local
431 const Int mod = pHuffCodebook->mod; local
560 const Int mod = pHuffCodebook->mod; local
    [all...]
  /external/qemu/android/skin/
keyset.h 80 /* convert a (sym,mod) pair into a descriptive string. e.g. "Ctrl-K" or "Alt-A", etc..
83 extern const char* skin_key_symmod_to_str ( int sym, int mod );
85 /* convert a key binding description into a (sym,mod) pair. returns 0 on success, -1
105 int mod; // really a SDL key modifier member in struct:__anon4150
115 extern SkinKeyCommand skin_keyset_get_command( SkinKeyset* kset, int sym, int mod );
keyboard.c 35 int mod; /* SDL key modifier value */ member in struct:__anon4145
162 int mod,
169 k->mod = mod;
241 int mod,
245 int mod0 = mod;
251 mod &= (KMOD_CTRL | KMOD_ALT | KMOD_SHIFT);
262 D("handling arrow (sym=%d mod=%d)", sym, mod);
269 mod = k->mod
506 int mod = ev->key.keysym.mod; local
    [all...]
keyset.c 222 skin_key_symmod_to_str( int sym, int mod )
229 if ((mod & KMOD_LCTRL) != 0) {
232 if ((mod & KMOD_RCTRL) != 0) {
235 if ((mod & KMOD_LSHIFT) != 0) {
238 if ((mod & KMOD_RSHIFT) != 0) {
241 if ((mod & KMOD_LALT) != 0) {
244 if ((mod & KMOD_RALT) != 0) {
266 int mod = 0; local
270 static const struct { const char* prefix; int mod; } mods[] = member in struct:__anon4147
297 mod |= mods[nn].mod
325 int mod; member in struct:__anon4148
394 int sym, mod; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/include/
SDL_keyboard.h 57 SDLMod mod; /* current key modifiers */ member in struct:SDL_keysym
  /prebuilt/darwin-x86/sdl/include/SDL/
SDL_keyboard.h 57 SDLMod mod; /* current key modifiers */ member in struct:SDL_keysym
  /prebuilt/linux-x86/sdl/include/SDL/
SDL_keyboard.h 57 SDLMod mod; /* current key modifiers */ member in struct:SDL_keysym
  /prebuilt/windows/sdl/host/include/SDL/
SDL_keyboard.h 61 SDLMod mod; /* current key modifiers */ member in struct:SDL_keysym
  /prebuilt/windows/sdl/include/SDL/
SDL_keyboard.h 57 SDLMod mod; /* current key modifiers */ member in struct:SDL_keysym
  /external/fsck_msdos/
check.c 65 int mod = 0; local
115 mod |= readfat(dosfs, &boot, boot.ValidFat >= 0 ? boot.ValidFat : 0, &fat);
116 if (mod & FSFATAL) {
126 mod |= readfat(dosfs, &boot, i, &currentFat);
128 if (mod & FSFATAL) {
133 mod |= comparefat(&boot, fat, currentFat, i);
135 if (mod & FSFATAL) {
144 mod |= checkfat(&boot, fat);
145 if (mod & FSFATAL) {
154 mod |= resetDosDirSection(&boot, fat)
    [all...]
fat.c 655 int mod = FSOK; local
669 mod |= ret = reconnect(dosfs, boot, fat, head);
670 if (mod & FSFATAL) {
673 mod &= ~FSFATAL;
675 mod |= FSFATMOD;
680 mod |= FSFATMOD;
707 mod |= writefsinfo(dosfs, boot);
710 return mod;
  /external/qemu/distrib/sdl-1.2.12/src/video/nanox/
SDL_nxevents.c 127 keysym -> mod = KMOD_NONE ;
131 GR_KEYMOD mod = keystroke -> modifiers ; local
133 if (mod & MWKMOD_LSHIFT)
134 keysym -> mod |= KMOD_LSHIFT ;
135 if (mod & MWKMOD_RSHIFT)
136 keysym -> mod |= KMOD_RSHIFT ;
137 if (mod & MWKMOD_LCTRL)
138 keysym -> mod |= KMOD_LCTRL ;
139 if (mod & MWKMOD_RCTRL)
140 keysym -> mod |= KMOD_RCTRL
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
GridLayoutInterface.java 36 int mod = breakSlotIndex % numRows; local
37 int add = (numRows - mod);
  /external/openssl/crypto/bn/
bn_blind.c 123 BIGNUM *mod; /* just a reference */ member in struct:bn_blinding_st
134 BN_BLINDING *BN_BLINDING_new(const BIGNUM *A, const BIGNUM *Ai, /* const */ BIGNUM *mod)
138 bn_check_top(mod);
155 /* save a copy of mod in the BN_BLINDING structure */
156 if ((ret->mod = BN_dup(mod)) == NULL) goto err;
157 if (BN_get_flags(mod, BN_FLG_CONSTTIME) != 0)
158 BN_set_flags(ret->mod, BN_FLG_CONSTTIME);
175 if (r->mod != NULL) BN_free(r->mod);
    [all...]
exp.c 9 #define MOD (8*8*8*8*8)
17 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/skia/src/core/
SkBitmapSampler.h 152 int mod = (max + 1) << 1; local
153 index = index % mod;
155 index = mod - index - 1;
  /external/grub/docs/
kernel.c 89 module_t *mod; local
94 for (i = 0, mod = (module_t *) mbi->mods_addr;
96 i++, mod++)
98 (unsigned) mod->mod_start,
99 (unsigned) mod->mod_end,
100 (char *) mod->string);
  /external/strace/
bjm.c 136 char* mod = data; local
147 tprintf(mod);
148 mod+=strlen(mod)+1;
  /bionic/libc/kernel/common/linux/
module.h 65 struct module *mod; member in struct:module_kobject
106 #define module_name(mod) "kernel"
107 #define __unsafe(mod)
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_yuv_sw.c 110 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 )
150 row2 = row1 + cols + mod;
153 mod += cols + mod;
200 row1 += mod;
201 row2 += mod;
1175 int mod; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/maccommon/
SDL_macevents.c 185 EventModifiers mod, mask; local
191 keysym.mod = KMOD_NONE;
195 mod = event.modifiers;
198 if ( (mod&mask) != (last_mods&mask) ) {
200 if ( (mod&mask) ||
211 last_mods = mod;
655 keysym->mod = KMOD_NONE;
  /external/quake/quake/src/WinQuake/
snd_android.cpp 58 static size_t mod(size_t value, size_t mod) { function
59 return value % mod;
62 static size_t next(size_t value, size_t mod) {
64 if ( value >= mod ) {
70 static size_t prev(size_t value, size_t mod) {
72 value = mod;
141 gDMAByteIndex = mod(gDMAByteIndex + bytesToCopy, TOTAL_BUFFER_SIZE);

Completed in 904 milliseconds

1 2 3 4