HomeSort by relevance Sort by last modified time
    Searched refs:mod (Results 176 - 200 of 717) sorted by null

1 2 3 4 5 6 78 91011>>

  /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...]
mini_disassembler.h 103 // mod: The mod field from the ModR/M byte.
105 bool ProcessSib(unsigned char* start, unsigned char mod, unsigned int* size);
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_keyboard.h 62 SDLMod mod; /**< current key modifiers */ member in struct:SDL_keysym
  /external/valgrind/main/coregrind/m_gdbserver/
valgrind_low.h 44 *mod set to True if destination content is modified by the transfer
47 transfer_direction dir, int size, Bool *mod);
target.h 213 differs. If no difference, no copy is done, *mod set to False.
214 If different; copy is done, *mod set to True. */
215 extern void* VG_(dmemcpy) ( void *d, const void *s, SizeT sz, Bool *mod );
225 // sets *mod to True otherwise set *mod to False.
230 Bool *mod);
target.c 302 Bool mod; local
306 valgrind_to_gdbserver, size, &mod);
307 // Note: the *mod received from transfer_register is not interesting.
309 supply_register (regno, buf, &mod);
310 if (mod && VG_(debugLog_getLevel)() > 1) {
351 Bool mod; local
369 valgrind_to_gdbserver, size, &mod);
375 gdbserver_to_valgrind, size, &mod);
376 if (mod && VG_(debugLog_getLevel)() > 1) {
580 void* VG_(dmemcpy) ( void *d, const void *s, SizeT sz, Bool *mod )
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/config/
makesetup 230 for mod in $mods
233 *$mod.o*) base=$mod;;
234 *) base=${mod}module;;
261 for mod in $MODS
263 EXTDECLS="${EXTDECLS}extern void init$mod(void);$NL"
264 INITBITS="${INITBITS} {\"$mod\", init$mod},$NL"
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_import.py 79 mod = __import__(TESTFN)
83 self.assertEqual(mod.a, a,
84 "module loaded (%s) but contents invalid" % mod)
85 self.assertEqual(mod.b, b,
86 "module loaded (%s) but contents invalid" % mod)
92 imp.reload(mod)
247 mod = __import__(TESTFN)
249 self.assertEqual(mod.a, 1, "module has wrong attribute values")
250 self.assertEqual(mod.b, 2, "module has wrong attribute values")
263 self.assertRaises(ZeroDivisionError, imp.reload, mod)
    [all...]
test_inspect.py 16 from test import inspect_fodder as mod namespace
32 modfile = mod.__file__
43 git = mod.StupidGit()
78 self.istest(inspect.iscode, 'mod.spam.func_code')
80 self.istest(inspect.isfunction, 'mod.spam')
81 self.istest(inspect.ismethod, 'mod.StupidGit.abuse')
83 self.istest(inspect.ismodule, 'mod')
100 self.assertTrue(inspect.isroutine(mod.spam))
104 self.istest(inspect.isclass, 'mod.StupidGit')
157 self.istest(inspect.isframe, 'mod.fr'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/config/
makesetup 230 for mod in $mods
233 *$mod.o*) base=$mod;;
234 *) base=${mod}module;;
261 for mod in $MODS
263 EXTDECLS="${EXTDECLS}extern void init$mod(void);$NL"
264 INITBITS="${INITBITS} {\"$mod\", init$mod},$NL"
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_import.py 79 mod = __import__(TESTFN)
83 self.assertEqual(mod.a, a,
84 "module loaded (%s) but contents invalid" % mod)
85 self.assertEqual(mod.b, b,
86 "module loaded (%s) but contents invalid" % mod)
92 imp.reload(mod)
247 mod = __import__(TESTFN)
249 self.assertEqual(mod.a, 1, "module has wrong attribute values")
250 self.assertEqual(mod.b, 2, "module has wrong attribute values")
263 self.assertRaises(ZeroDivisionError, imp.reload, mod)
    [all...]
test_inspect.py 16 from test import inspect_fodder as mod namespace
32 modfile = mod.__file__
43 git = mod.StupidGit()
78 self.istest(inspect.iscode, 'mod.spam.func_code')
80 self.istest(inspect.isfunction, 'mod.spam')
81 self.istest(inspect.ismethod, 'mod.StupidGit.abuse')
83 self.istest(inspect.ismodule, 'mod')
100 self.assertTrue(inspect.isroutine(mod.spam))
104 self.istest(inspect.isclass, 'mod.StupidGit')
157 self.istest(inspect.isframe, 'mod.fr'
    [all...]
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_keyboard.h 62 SDLMod mod; /**< current key modifiers */ member in struct:SDL_keysym
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_keyboard.h 62 SDLMod mod; /**< current key modifiers */ member in struct:SDL_keysym
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_keyboard.h 62 SDLMod mod; /**< current key modifiers */ member in struct:SDL_keysym
  /external/elfutils/libdwfl/
linux-kernel-modules.c 194 Dwfl_Module *mod = INTUSE(dwfl_report_elf) (dwfl, KERNEL_MODNAME, local
196 if (mod == NULL)
200 mod->e_type = ET_DYN;
430 /* Look for a build ID note in NOTESFILE and associate the ID with MOD. */
432 check_notes (Dwfl_Module *mod, const char *notesfile,
473 (mod, NULL, mod->name, 0, secname, 0, NULL, &vaddr) != 0
479 return INTUSE(dwfl_module_report_build_id) (mod, bits,
496 check_module_notes (Dwfl_Module *mod)
499 if (asprintf (&dirs[0], MODNOTESFMT, mod->name) < 0
575 Dwfl_Module *mod = report (); local
837 Dwfl_Module *mod = INTUSE(dwfl_report_module) (dwfl, modname, local
    [all...]
dwfl_module_getsrc_file.c 54 dwfl_module_getsrc_file (Dwfl_Module *mod,
58 if (mod == NULL)
61 if (mod->dw == NULL)
64 if (INTUSE(dwfl_module_getdwarf) (mod, &bias) == NULL)
77 while ((error = __libdwfl_nextcu (mod, cu, &cu)) == DWFL_E_NOERROR
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_peephole.cpp 496 i->src(0).mod = Modifier(0);
497 i->src(1).mod = Modifier(0);
508 i->src(1).mod = i->src(2).mod;
547 i->src(0).mod = Modifier(0);
565 if (!mul2->src(t).mod && insn->op == OP_MUL && insn->dType == TYPE_F32)
576 mul1->src(s1).mod = Modifier(0);
585 mul1->src(0).mod *= Modifier(NV50_IR_MOD_NEG);
603 if (!insn->src(s2).mod && !insn->src(t2).getImmediate(imm1))
609 mul2->src(s2).mod *= Modifier(NV50_IR_MOD_NEG)
842 Modifier mod; local
1005 Modifier mod[4]; local
1087 Modifier mod = rcp->src(0).mod * si->src(0).mod; local
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_peephole.cpp 496 i->src(0).mod = Modifier(0);
497 i->src(1).mod = Modifier(0);
508 i->src(1).mod = i->src(2).mod;
547 i->src(0).mod = Modifier(0);
565 if (!mul2->src(t).mod && insn->op == OP_MUL && insn->dType == TYPE_F32)
576 mul1->src(s1).mod = Modifier(0);
585 mul1->src(0).mod *= Modifier(NV50_IR_MOD_NEG);
603 if (!insn->src(s2).mod && !insn->src(t2).getImmediate(imm1))
609 mul2->src(s2).mod *= Modifier(NV50_IR_MOD_NEG)
842 Modifier mod; local
1005 Modifier mod[4]; local
1087 Modifier mod = rcp->src(0).mod * si->src(0).mod; local
    [all...]
  /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();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/signers/
ECDSASigner.java 86 r = x.mod(n);
92 s = k.modInverse(n).multiply(e.add(d.multiply(r))).mod(n);
132 BigInteger u1 = e.multiply(c).mod(n);
133 BigInteger u2 = r.multiply(c).mod(n);
146 BigInteger v = point.getX().toBigInteger().mod(n);
  /libcore/harmony-tests/src/test/java/tests/api/java/math/
BigIntegerTest.java 368 BigInteger a = zero, mod, inv; local
370 mod = BigInteger.valueOf(j);
374 inv = a.modInverse(mod);
375 assertTrue("bad inverse: " + a + " inv mod " + mod
376 + " equals " + inv, one.equals(a.multiply(inv).mod(
377 mod)));
379 + " inv mod " + mod + " equals " + inv, inv
380 .compareTo(mod) < 0)
930 BigInteger mod = i1.mod(i2); local
    [all...]

Completed in 477 milliseconds

1 2 3 4 5 6 78 91011>>