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

1 2 3 4 5

  /frameworks/base/media/libstagefright/codecs/aacdec/
s_hcb.h 108 Int mod; member in struct:__anon15026
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 94 /* convert a (sym,mod) pair into a descriptive string. e.g. "Ctrl-K" or "Alt-A", etc..
97 extern const char* skin_key_symmod_to_str ( int sym, int mod );
99 /* convert a key binding description into a (sym,mod) pair. returns 0 on success, -1
119 int mod; // really a SDL key modifier member in struct:__anon9465
129 extern SkinKeyCommand skin_keyset_get_command( SkinKeyset* kset, int sym, int mod );
  /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 664 int mod = FSOK; local
678 mod |= ret = reconnect(dosfs, boot, fat, head);
679 if (mod & FSFATAL) {
682 mod &= ~FSFATAL;
684 mod |= FSFATMOD;
689 mod |= FSFATMOD;
738 mod |= writefsinfo(dosfs, boot);
741 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...]
  /external/javassist/src/main/javassist/
CtArray.java 41 int mod = Modifier.FINAL; local
43 mod |= getComponentType().getModifiers()
47 return mod;
CtNewClass.java 93 int mod = c.getModifiers(); local
94 if (isInheritable(mod, superclazz)) {
98 cons.setModifiers(mod & (Modifier.PUBLIC | Modifier.PROTECTED | Modifier.PRIVATE));
110 private boolean isInheritable(int mod, CtClass superclazz) {
111 if (Modifier.isPrivate(mod))
114 if (Modifier.isPackage(mod)) {
  /external/llvm/examples/BrainF/
BrainFDriver.cpp 58 void addMainFunction(Module *mod) {
60 Function *main_func = cast<Function>(mod->
61 getOrInsertFunction("main", IntegerType::getInt32Ty(mod->getContext()),
62 IntegerType::getInt32Ty(mod->getContext()),
64 IntegerType::getInt8Ty(mod->getContext()))), NULL));
74 BasicBlock *bb = BasicBlock::Create(mod->getContext(), "main.0", main_func);
78 CallInst *brainf_call = CallInst::Create(mod->getFunction("brainf"),
84 ReturnInst::Create(mod->getContext(),
85 ConstantInt::get(mod->getContext(), APInt(32, 0)), bb);
128 Module *mod = bf.parse(in, 65536, cf, Context); //64 Ki local
    [all...]
  /external/oprofile/daemon/
opd_ibs_trans.c 568 static char const * mod = NULL; local
587 mod = vmlinux;
593 mod = find_cookie(trans->cookie);
608 static char const * mod = NULL; local
624 mod = vmlinux;
630 mod = find_cookie(trans->cookie);
  /external/srtp/crypto/include/
crypto_kernel.h 97 debug_module_t *mod; member in struct:kernel_debug_module
  /external/llvm/tools/llc/
llc.cpp 256 Module &mod = *M.get(); local
260 mod.setTargetTriple(Triple::normalize(TargetTriple));
262 Triple TheTriple(mod.getTargetTriple());
354 PM.add(new TargetData(&mod));
380 PM.run(mod);
  /external/openssl/crypto/bn/
bn_blind.c 123 BIGNUM *mod; /* just a reference */ member in struct:bn_blinding_st
137 BN_BLINDING *BN_BLINDING_new(const BIGNUM *A, const BIGNUM *Ai, BIGNUM *mod)
141 bn_check_top(mod);
158 /* save a copy of mod in the BN_BLINDING structure */
159 if ((ret->mod = BN_dup(mod)) == NULL) goto err;
160 if (BN_get_flags(mod, BN_FLG_CONSTTIME) != 0)
161 BN_set_flags(ret->mod, BN_FLG_CONSTTIME);
179 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/javassist/src/main/javassist/bytecode/
ClassFilePrinter.java 45 int mod local
50 out.println(Modifier.toString(mod) + " class "
  /external/strace/
bjm.c 136 char* mod = data; local
147 tprintf("%s", mod);
148 mod+=strlen(mod)+1;
  /bionic/libc/kernel/arch-sh/asm/
ptrace.h 72 unsigned long mod; member in struct:pt_dspregs
  /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)

Completed in 1279 milliseconds

1 2 3 4 5