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

12 3 4 5 6 7 8 91011>>

  /frameworks/av/media/common_time/
local_clock.cpp 36 const hw_module_t* mod; local
43 res = hw_get_module_by_class(LOCAL_TIME_HARDWARE_MODULE_ID, NULL, &mod);
47 res = local_time_hw_device_open(mod, &dev_);
  /cts/suite/audio_quality/test_description/processing/
check_spectrum.py 152 mod = __import__("gen_random") variable
158 data = getattr(mod, "do_gen_random")(peakAmpl, durationInMSec, samplingRate, fHigh,\
check_spectrum_playback.py 118 mod = __import__("gen_random") variable
124 data = getattr(mod, "do_gen_random")(peakAmpl, durationInMSec, samplingRate, fHigh,\
  /external/chromium_org/sandbox/win/src/sidestep/
mini_disassembler.cpp 224 case AM_R: // mod field of ModR/M may refer only to a general register
331 // We never care about the reg field, only the combination of the mod
335 unsigned char mod = modrm & 0xC0; // mask out top two bits to get mod field local
337 mod = mod >> 3; // shift the mod field to the right place
338 modrm = mod | modrm; // combine the r/m and mod fields as discussed
339 mod = mod >> 3; // shift the mod field to bits 2..
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
mini_disassembler.cc 256 case AM_R: // mod field of ModR/M may refer only to a general register
367 // We never care about the reg field, only the combination of the mod
371 unsigned char mod = modrm & 0xC0; // mask out top two bits to get mod field local
373 mod = mod >> 3; // shift the mod field to the right place
374 modrm = mod | modrm; // combine the r/m and mod fields as discussed
375 mod = mod >> 3; // shift the mod field to bits 2..
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
mini_disassembler.cc 256 case AM_R: // mod field of ModR/M may refer only to a general register
367 // We never care about the reg field, only the combination of the mod
371 unsigned char mod = modrm & 0xC0; // mask out top two bits to get mod field local
373 mod = mod >> 3; // shift the mod field to the right place
374 modrm = mod | modrm; // combine the r/m and mod fields as discussed
375 mod = mod >> 3; // shift the mod field to bits 2..
    [all...]
  /external/chromium_org/tools/memory_watcher/
mini_disassembler.cc 221 case AM_R: // mod field of ModR/M may refer only to a general register
328 // We never care about the reg field, only the combination of the mod
332 unsigned char mod = modrm & 0xC0; // mask out top two bits to get mod field local
334 mod = mod >> 3; // shift the mod field to the right place
335 modrm = mod | modrm; // combine the r/m and mod fields as discussed
336 mod = mod >> 3; // shift the mod field to bits 2..
    [all...]
  /external/chromium_org/tools/traceline/traceline/sidestep/
mini_disassembler.cc 245 case AM_R: // mod field of ModR/M may refer only to a general register
352 // We never care about the reg field, only the combination of the mod
356 unsigned char mod = modrm & 0xC0; // mask out top two bits to get mod field local
358 mod = mod >> 3; // shift the mod field to the right place
359 modrm = mod | modrm; // combine the r/m and mod fields as discussed
360 mod = mod >> 3; // shift the mod field to bits 2..
    [all...]
  /external/elfutils/libdwfl/
offline.c 60 dwfl_offline_section_address (Dwfl_Module *mod,
69 assert (mod->e_type == ET_REL);
73 if (mod->debug.elf == NULL)
81 Elf_Scn *ourscn = elf_getscn (mod->debug.elf, shndx);
84 while ((scn = elf_nextscn (mod->debug.elf, scn)) != ourscn)
96 while ((scn = elf_nextscn (mod->main.elf, scn)) != NULL)
150 Dwfl_Module *mod = __libdwfl_report_elf (dwfl, name, file_name, fd, elf, local
152 if (mod != NULL)
160 if ((dwfl->offline_next_address >= mod->low_addr
161 || mod->low_addr - dwfl->offline_next_address < OFFLINE_REDZONE
261 Dwfl_Module *mod = NULL; local
292 Dwfl_Module *mod = process_file (dwfl, name, file_name, fd, elf, predicate); local
    [all...]
dwfl_report_elf.c 278 Dwfl_Module *mod = __libdwfl_report_elf (dwfl, name, file_name, local
280 if (mod == NULL)
287 return mod;
  /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 57 void addMainFunction(Module *mod) {
59 Function *main_func = cast<Function>(mod->
60 getOrInsertFunction("main", IntegerType::getInt32Ty(mod->getContext()),
61 IntegerType::getInt32Ty(mod->getContext()),
63 IntegerType::getInt8Ty(mod->getContext()))), NULL));
73 BasicBlock *bb = BasicBlock::Create(mod->getContext(), "main.0", main_func);
77 CallInst *brainf_call = CallInst::Create(mod->getFunction("brainf"),
83 ReturnInst::Create(mod->getContext(),
84 ConstantInt::get(mod->getContext(), APInt(32, 0)), bb);
127 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/valgrind/main/coregrind/m_gdbserver/
valgrind-low-arm.c 118 Bool mod; local
119 supply_register_by_name ("pc", &newpc, &mod);
120 if (mod)
181 transfer_direction dir, int size, Bool *mod)
186 *mod = False;
193 case 0: VG_(transfer) (&arm->guest_R0, buf, dir, size, mod); break;
194 case 1: VG_(transfer) (&arm->guest_R1, buf, dir, size, mod); break;
195 case 2: VG_(transfer) (&arm->guest_R2, buf, dir, size, mod); break;
196 case 3: VG_(transfer) (&arm->guest_R3, buf, dir, size, mod); break;
197 case 4: VG_(transfer) (&arm->guest_R4, buf, dir, size, mod); break
    [all...]
valgrind-low-ppc32.c 168 Bool mod; local
169 supply_register_by_name ("pc", &newpc, &mod);
170 if (mod)
180 transfer_direction dir, int size, Bool *mod)
185 *mod = False;
192 case 0: VG_(transfer) (&ppc32->guest_GPR0, buf, dir, size, mod); break;
193 case 1: VG_(transfer) (&ppc32->guest_GPR1, buf, dir, size, mod); break;
194 case 2: VG_(transfer) (&ppc32->guest_GPR2, buf, dir, size, mod); break;
195 case 3: VG_(transfer) (&ppc32->guest_GPR3, buf, dir, size, mod); break;
196 case 4: VG_(transfer) (&ppc32->guest_GPR4, buf, dir, size, mod); break
    [all...]
valgrind-low-ppc64.c 165 Bool mod; local
166 supply_register_by_name ("pc", &newpc, &mod);
167 if (mod)
177 transfer_direction dir, int size, Bool *mod)
182 *mod = False;
189 case 0: VG_(transfer) (&ppc64->guest_GPR0, buf, dir, size, mod); break;
190 case 1: VG_(transfer) (&ppc64->guest_GPR1, buf, dir, size, mod); break;
191 case 2: VG_(transfer) (&ppc64->guest_GPR2, buf, dir, size, mod); break;
192 case 3: VG_(transfer) (&ppc64->guest_GPR3, buf, dir, size, mod); break;
193 case 4: VG_(transfer) (&ppc64->guest_GPR4, buf, dir, size, mod); break
    [all...]
valgrind-low-x86.c 108 Bool mod; local
109 supply_register_by_name ("eip", &newpc, &mod);
110 if (mod)
120 transfer_direction dir, int size, Bool *mod)
125 *mod = False;
132 case 0: VG_(transfer) (&x86->guest_EAX, buf, dir, size, mod); break;
133 case 1: VG_(transfer) (&x86->guest_ECX, buf, dir, size, mod); break;
134 case 2: VG_(transfer) (&x86->guest_EDX, buf, dir, size, mod); break;
135 case 3: VG_(transfer) (&x86->guest_EBX, buf, dir, size, mod); break;
136 case 4: VG_(transfer) (&x86->guest_ESP, buf, dir, size, mod); break
    [all...]
  /external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/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/chromium_org/third_party/openssl/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/elfutils/tests/
allregs.c 77 first_module (Dwfl_Module *mod,
84 if (dwfl_module_getelf (mod, &bias) == NULL) /* Not really a module. */
87 *(Dwfl_Module **) arg = mod;
184 Dwfl_Module *mod = NULL; local
185 if (dwfl_getmodules (dwfl, &first_module, &mod, 0) < 0)
191 int result = dwfl_module_register_names (mod, &one_register, &state);
219 int result = dwfl_module_register_names (mod, &match_register, &regno);
  /external/guava/guava-gwt/src-super/com/google/common/math/super/com/google/common/math/
IntMath.java 82 * Returns {@code x mod m}. This differs from {@code x % m} in that it always returns a
87 * mod(7, 4) == 3
88 * mod(-7, 4) == 1
89 * mod(-1, 4) == 3
90 * mod(-8, 4) == 0
91 * mod(8, 4) == 0}</pre>
95 public static int mod(int x, int m) { method in class:IntMath

Completed in 2104 milliseconds

12 3 4 5 6 7 8 91011>>