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

1 2 3 4 5 6 7 8 91011

  /external/javassist/src/main/javassist/
Modifier.java 51 public static boolean isPublic(int mod) {
52 return (mod & PUBLIC) != 0;
59 public static boolean isPrivate(int mod) {
60 return (mod & PRIVATE) != 0;
67 public static boolean isProtected(int mod) {
68 return (mod & PROTECTED) != 0;
75 public static boolean isPackage(int mod) {
76 return (mod & (PUBLIC | PRIVATE | PROTECTED)) == 0;
83 public static boolean isStatic(int mod) {
84 return (mod & STATIC) != 0
    [all...]
CtNewNestedClass.java 34 public void setModifiers(int mod) {
35 mod = mod & ~Modifier.STATIC;
36 super.setModifiers(mod);
37 updateInnerEntry(mod, getName(), this, true);
40 private static void updateInnerEntry(int mod, String name, CtClass clazz, boolean outer) {
51 ica.setAccessFlags(i, mod | acc);
56 updateInnerEntry(mod, name, parent, false);
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/srtp/crypto/include/
err.h 153 #define debug_on(mod) (mod).on = 1
155 #define debug_off(mod) (mod).on = 0
158 #define debug_print(mod, format, arg) \
159 if (mod.on) err_report(err_level_debug, ("%s: " format "\n"), mod.name, arg)
160 #define debug_print2(mod, format, arg1,arg2) \
161 if (mod.on) err_report(err_level_debug, ("%s: " format "\n"), mod.name, arg1,arg2
    [all...]
  /bionic/libc/kernel/common/linux/
kmod.h 21 #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x)))
  /development/ndk/platforms/android-3/include/linux/
kmod.h 21 #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x)))
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
kmod.h 21 #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x)))
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
kmod.h 21 #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x)))
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
kmod.h 21 #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x)))
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
kmod.h 21 #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x)))
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
kmod.h 21 #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x)))
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
kmod.h 21 #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x)))
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/linux/
kmod.h 21 #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x)))
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/linux/
kmod.h 21 #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x)))
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/linux/
kmod.h 21 #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x)))
  /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...]
  /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/mesa3d/src/glsl/
ir_to_llvm.h 7 struct llvm::Module * glsl_ir_to_llvm_module(struct exec_list *ir, llvm::Module * mod,
  /external/mesa3d/src/pixelflinger2/
texture.h 31 void DeclareTextureFunctions(llvm::Module * mod);
32 void AddTextureFunctionMappings(llvm::Module * mod, llvm::ExecutionEngine * ee);
  /external/llvm/tools/lto/
lto.cpp 130 void lto_module_dispose(lto_module_t mod)
132 delete mod;
139 const char* lto_module_get_target_triple(lto_module_t mod)
141 return mod->getTargetTriple();
147 void lto_module_set_target_triple(lto_module_t mod, const char *triple)
149 return mod->setTargetTriple(triple);
156 unsigned int lto_module_get_num_symbols(lto_module_t mod)
158 return mod->getSymbolCount();
164 const char* lto_module_get_symbol_name(lto_module_t mod, unsigned int index)
166 return mod->getSymbolName(index)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_yuv_mmx.c 83 int rows, int cols, int mod )
91 row2 = (Uint32 *)out+cols+mod; // start of second row
92 mod = (mod+cols+mod)*4; // increment for row1 in byte
224 "addl %8,%3\n" // row1+= mod
225 "addl %8,%5\n" // row2+= mod
234 "r"(row1),"r"(cols),"r"(row2),"m"(x),"m"(y),"m"(mod),
244 int rows, int cols, int mod )
252 row2 = (Uint16 *)out+cols+mod; /* start of second row *
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacdec/
s_hcb.h 108 Int mod; member in struct:__anon15026
  /external/v8/src/ia32/
disasm-ia32.cc 316 static void get_modrm(byte data, int* mod, int* regop, int* rm) {
317 *mod = (data >> 6) & 3;
372 int mod, regop, rm; local
373 get_modrm(*modrmp, &mod, &regop, &rm);
374 RegisterNameMapping register_name = (mod == 3) ? direct_register_name :
376 switch (mod) {
419 mod == 2 ? *reinterpret_cast<int32_t*>(modrmp + 2) : *(modrmp + 2);
429 return mod == 2 ? 6 : 3;
433 mod == 2 ? *reinterpret_cast<int32_t*>(modrmp + 1) : *(modrmp + 1);
435 return mod == 2 ? 5 : 2
472 int mod, regop, rm; local
500 int mod, regop, rm; local
529 int mod, regop, rm; local
562 int mod, regop, rm; local
931 { int mod, regop, rm; local
945 int mod, regop, rm; local
968 int mod, regop, rm; local
978 int mod, regop, rm; local
999 int mod, regop, rm; local
1016 int mod, regop, rm; local
1027 int mod, regop, rm; local
1065 int mod, regop, rm; local
1084 int mod, regop, rm; local
1106 int mod, regop, rm; local
1117 int mod, regop, rm; local
1126 int mod, regop, rm; local
1137 int mod, regop, rm; local
1147 int mod, regop, rm; local
1161 int mod, regop, rm; local
1174 int mod, regop, rm; local
1182 int mod, regop, rm; local
1190 int mod, regop, rm; local
1198 int mod, regop, rm; local
1204 int mod, regop, rm; local
1210 int mod, regop, rm; local
1220 int mod, regop, rm; local
1228 int mod, regop, rm; local
1239 int mod, regop, rm; local
1248 int mod, regop, rm; local
1254 int mod, regop, rm; local
1261 int mod, regop, rm; local
1269 int mod, regop, rm; local
1280 int mod, regop, rm; local
1288 int mod, regop, rm; local
1304 int mod, regop, rm; local
1366 int mod, regop, rm; local
1372 int mod, regop, rm; local
1378 int mod, regop, rm; local
1394 int mod, regop, rm; local
1435 int mod, regop, rm; local
1441 int mod, regop, rm; local
1447 int mod, regop, rm; local
1453 int mod, regop, rm; local
1459 int mod, regop, rm; local
1466 int mod, regop, rm; local
    [all...]
  /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/kernel-headers/original/linux/
kmod.h 36 #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x)))

Completed in 821 milliseconds

1 2 3 4 5 6 7 8 91011