HomeSort by relevance Sort by last modified time
    Searched defs:mod (Results 51 - 75 of 318) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/mesa3d/src/gallium/state_trackers/clover/llvm/
invocation.cpp 138 find_kernels(llvm::Module *mod, std::vector<llvm::Function *> &kernels) {
140 mod->getNamedMetadata("opencl.kernels");
148 link(llvm::Module *mod, const std::string &triple,
154 llvm::Linker linker("clover", mod);
158 mod = linker.releaseModule();
186 PM.run(*mod);
190 build_module_llvm(llvm::Module *mod,
199 llvm::WriteBitcodeToFile(mod, bitcode_ostream);
259 llvm::Module *mod = compile(source, "cl_input", triple); local
261 find_kernels(mod, kernels)
    [all...]
  /external/mesa3d/src/gallium/winsys/sw/android/
android_sw_winsys.cpp 237 const hw_module_t *mod; local
243 if (hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &mod)) {
248 droid->grmod = (const gralloc_module_t *) 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);
182 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/valgrind/main/coregrind/m_gdbserver/
valgrind-low-amd64.c 141 Bool mod; local
142 supply_register_by_name ("rip", &newpc, &mod);
143 if (mod)
153 transfer_direction dir, int size, Bool *mod)
158 *mod = False;
165 case 0: VG_(transfer) (&amd64->guest_RAX, buf, dir, size, mod); break;
166 case 1: VG_(transfer) (&amd64->guest_RBX, buf, dir, size, mod); break;
167 case 2: VG_(transfer) (&amd64->guest_RCX, buf, dir, size, mod); break;
168 case 3: VG_(transfer) (&amd64->guest_RDX, buf, dir, size, mod); break;
169 case 4: VG_(transfer) (&amd64->guest_RSI, buf, dir, size, mod); break
    [all...]
regcache.c 211 unsigned char *register_data_for_supply (int n, int fetch, Bool *mod)
218 *mod = False;
220 *mod = True;
225 void supply_register (int n, const void *buf, Bool *mod)
229 buf, register_size (n), mod); local
231 *mod = True;
234 void supply_register_from_string (int n, const char *buf, Bool *mod)
240 bytes_register, register_size (n), mod); local
242 *mod = True;
245 void supply_register_by_name (const char *name, const void *buf, Bool *mod)
247 supply_register (find_regno (name), buf, mod); local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pdb.py 244 mod = imp.new_module('module_to_skip') variable
245 exec 'def foo_pony(callback): x = 1; callback(); return None' in mod.__dict__
255 ... mod.foo_pony(callback)
268 -> mod.foo_pony(callback)
283 -> mod.foo_pony(callback)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pdb.py 244 mod = imp.new_module('module_to_skip') variable
245 exec 'def foo_pony(callback): x = 1; callback(); return None' in mod.__dict__
255 ... mod.foo_pony(callback)
268 -> mod.foo_pony(callback)
283 -> mod.foo_pony(callback)
  /external/chromium_org/chrome_frame/
buggy_bho_handling.cc 59 bool IsBuggyBho(HMODULE mod) {
60 DCHECK(mod);
63 ::GetModuleFileNameA(mod, path, arraysize(path));
68 GetModuleVersion(mod, &version, NULL);
161 HMODULE mod = base::GetModuleFromAddress(methods[0]); local
162 if (!IsBuggyBho(mod))
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_init.c 189 LLVMModuleRef mod; local
194 &mod, &error);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
evergreen_compute_internal.h 81 LLVMModuleRef mod; member in struct:r600_pipe_compute
  /external/elfutils/libdwfl/
linux-proc-maps.c 141 Dwfl_Module *mod = INTUSE(dwfl_report_module) (dwfl, last_file, local
145 if (unlikely (mod == NULL))
291 dwfl_linux_proc_find_elf (Dwfl_Module *mod __attribute__ ((unused)),
  /external/fsck_msdos/
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/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/guava/guava/src/com/google/common/math/
IntMath.java 306 * Returns {@code x mod m}. This differs from {@code x % m} in that it always returns a
311 * mod(7, 4) == 3
312 * mod(-7, 4) == 1
313 * mod(-1, 4) == 3
314 * mod(-8, 4) == 0
315 * mod(8, 4) == 0}</pre>
319 public static int mod(int x, int m) { method
  /external/javassist/src/main/javassist/bytecode/
ClassFilePrinter.java 45 int mod local
50 out.println(Modifier.toString(mod) + " class "
  /external/libsepol/tests/
test-deps.c 141 policydb_t mod; local
142 policydb_t *mods[] = { &mod };
162 CU_ASSERT_FATAL(test_load_policy(&mod, POLICY_MOD, mls, "test-deps", policy) == 0);
168 policydb_destroy(&mod);
223 policydb_t mod; local
224 policydb_t *mods[] = { &mod };
242 CU_ASSERT_FATAL(test_load_policy(&mod, POLICY_MOD, mls, "test-deps", policy) == 0);
248 policydb_destroy(&mod);
  /external/llvm/tools/llc/
llc.cpp 206 Module *mod = 0; local
215 mod = M.get();
216 if (mod == 0) {
223 mod->setTargetTriple(Triple::normalize(TargetTriple));
224 TheTriple = Triple(mod->getTargetTriple());
288 assert(mod && "Should have exited after outputting help!");
329 PM.add(new DataLayout(mod));
376 PM.run(*mod);
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_init.c 189 LLVMModuleRef mod; local
194 &mod, &error);
  /external/mesa3d/src/gallium/drivers/r600/
evergreen_compute_internal.h 81 LLVMModuleRef mod; member in struct:r600_pipe_compute
  /external/qemu/distrib/sdl-1.2.15/test/
testwm.c 173 int mod; local
175 mod = SDL_GetModState();
176 if(!mod) {
180 if(mod & KMOD_LSHIFT)
182 if(mod & KMOD_RSHIFT)
184 if(mod & KMOD_LCTRL)
186 if(mod & KMOD_RCTRL)
188 if(mod & KMOD_LALT)
190 if(mod & KMOD_RALT)
192 if(mod & KMOD_LMETA
    [all...]
  /external/strace/
bjm.c 134 char* mod = data; local
148 mod);
149 mod += strlen(mod)+1;
  /development/tools/idegen/src/com/android/idegen/
IntellijProject.java 83 for (Module mod : modules) {
84 replaceWithAggregate(mod);
88 for (Module mod : modules) {
89 mod.buildImlFile();
146 Module mod = cache.getAndCache(name); local
147 File iml = mod.getImlFile();
166 Module mod = cache.getAndCache(name); local
167 File dir = mod.getDir();
  /art/compiler/utils/x86/
assembler_x86.h 51 uint8_t mod() const { function in class:art::x86::Operand
92 void SetModRM(int mod, Register rm) {
93 CHECK_EQ(mod & ~3, 0);
94 encoding_[0] = (mod << 6) | rm;
  /bionic/libc/kernel/common/linux/
module.h 72 struct module *mod; member in struct:module_kobject
106 #define module_name(mod) "kernel"
107 #define __unsafe(mod)

Completed in 5557 milliseconds

1 23 4 5 6 7 8 91011>>