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

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/mesa/src/src/mesa/x86/rtasm/
x86sse.c 95 assert(reg.mod == mod_REG);
97 val |= regmem.mod << 6; /* mod field */
110 switch (regmem.mod) {
146 switch (dst.mod) {
154 assert(src.mod == mod_REG);
179 reg.mod = mod_REG;
190 if (reg.mod == mod_REG)
196 reg.mod = mod_INDIRECT;
198 reg.mod = mod_DISP8
    [all...]
  /external/mesa3d/src/mesa/x86/rtasm/
x86sse.c 95 assert(reg.mod == mod_REG);
97 val |= regmem.mod << 6; /* mod field */
110 switch (regmem.mod) {
146 switch (dst.mod) {
154 assert(src.mod == mod_REG);
179 reg.mod = mod_REG;
190 if (reg.mod == mod_REG)
196 reg.mod = mod_INDIRECT;
198 reg.mod = mod_DISP8
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/web_request/
web_request_api_helpers.cc 556 for (RequestCookieModifications::const_iterator mod = modifications.begin();
557 mod != modifications.end(); ++mod) {
558 if ((*mod)->type != ADD || !(*mod)->modification.get())
560 std::string* new_name = (*mod)->modification->name.get();
561 std::string* new_value = (*mod)->modification->value.get();
598 for (RequestCookieModifications::const_iterator mod = modifications.begin();
599 mod != modifications.end(); ++mod) {
    [all...]
  /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/javassist/src/main/javassist/tools/rmi/
StubGenerator.java 203 int mod = m.getModifiers(); local
205 && !Modifier.isFinal(mod))
206 if (Modifier.isPublic(mod)) {
208 if (Modifier.isStatic(mod))
221 wmethod.setModifiers(mod);
224 else if (!Modifier.isProtected(mod)
225 && !Modifier.isPrivate(mod))
  /external/srtp/crypto/kernel/
crypto_kernel.c 223 printf(" %s ", dm->mod->name);
224 if (dm->mod->on)
241 printf(" %s ", dm->mod->name);
242 if (dm->mod->on)
286 kdm->mod->name);
479 if (strncmp(new_dm->name, kdm->mod->name, 64) == 0)
491 new->mod = new_dm;
507 if (strncmp(name, kdm->mod->name, 64) == 0) {
508 kdm->mod->on = on;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_importhooks.py 70 mod = sys.modules.setdefault(fullname,imp.new_module(fullname))
71 mod.__file__ = "<%s>" % self.__class__.__name__
72 mod.__loader__ = self
74 mod.__path__ = self._get__path__()
75 exec code in mod.__dict__
76 return mod
132 mod = imp.load_module(fullname, self.file, self.filename, self.stuff)
135 mod.__loader__ = self # for introspection
136 return mod
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_importhooks.py 70 mod = sys.modules.setdefault(fullname,imp.new_module(fullname))
71 mod.__file__ = "<%s>" % self.__class__.__name__
72 mod.__loader__ = self
74 mod.__path__ = self._get__path__()
75 exec code in mod.__dict__
76 return mod
132 mod = imp.load_module(fullname, self.file, self.filename, self.stuff)
135 mod.__loader__ = self # for introspection
136 return mod
  /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)
  /development/ndk/platforms/android-3/include/linux/
module.h 65 struct module *mod; member in struct:module_kobject
106 #define module_name(mod) "kernel"
107 #define __unsafe(mod)
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
radeon_llvm_emit.cpp 112 Module * mod = unwrap(M); local
117 mod->dump();
142 PM.run(*mod);
  /external/chromium_org/third_party/skia/include/core/
SkMath.h 177 * Stores numer/denom and numer%denom into div and mod respectively.
180 inline void SkTDivMod(In numer, In denom, Out* div, Out* mod) {
190 *mod = static_cast<Out>(numer-d*denom);
194 *mod = static_cast<Out>(numer%denom);
  /external/mesa3d/src/gallium/drivers/radeon/
radeon_llvm_emit.cpp 112 Module * mod = unwrap(M); local
117 mod->dump();
142 PM.run(*mod);
  /external/skia/include/core/
SkMath.h 177 * Stores numer/denom and numer%denom into div and mod respectively.
180 inline void SkTDivMod(In numer, In denom, Out* div, Out* mod) {
190 *mod = static_cast<Out>(numer-d*denom);
194 *mod = static_cast<Out>(numer%denom);
  /external/valgrind/main/cachegrind/
cg_diff.in 51 --mod-filename=<expr> a Perl search-and-replace expression that is applied
52 to filenames, eg. --mod-filename='s/prog[0-9]/projN/'
53 --mod-funcname=<expr> like --mod-filename, but applied to function names
62 # --mod-filename expression
65 # --mod-funcname expression
82 } elsif ($arg =~ /^--mod-filename=(.*)/) {
85 } elsif ($arg =~ /^--mod-funcname=(.*)/) {
  /frameworks/compile/libbcc/tools/build/
gen-build-info.py 54 mod = ' modified'
56 mod = ''
58 return rev_sha1 + mod + ' (git)'
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
module.h 65 struct module *mod; member in struct:module_kobject
106 #define module_name(mod) "kernel"
107 #define __unsafe(mod)
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
module.h 65 struct module *mod; member in struct:module_kobject
106 #define module_name(mod) "kernel"
107 #define __unsafe(mod)
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
module.h 65 struct module *mod; member in struct:module_kobject
106 #define module_name(mod) "kernel"
107 #define __unsafe(mod)
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
module.h 65 struct module *mod; member in struct:module_kobject
106 #define module_name(mod) "kernel"
107 #define __unsafe(mod)
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/
module.h 65 struct module *mod; member in struct:module_kobject
106 #define module_name(mod) "kernel"
107 #define __unsafe(mod)
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/
module.h 65 struct module *mod; member in struct:module_kobject
106 #define module_name(mod) "kernel"
107 #define __unsafe(mod)
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/linux/
module.h 65 struct module *mod; member in struct:module_kobject
106 #define module_name(mod) "kernel"
107 #define __unsafe(mod)
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/linux/
module.h 65 struct module *mod; member in struct:module_kobject
106 #define module_name(mod) "kernel"
107 #define __unsafe(mod)
  /prebuilts/ndk/6/platforms/android-3/arch-x86/usr/include/linux/
module.h 65 struct module *mod; member in struct:module_kobject
106 #define module_name(mod) "kernel"
107 #define __unsafe(mod)

Completed in 1603 milliseconds

1 2 3 4 5 6 7 891011>>