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

1 23 4 5 6 7 8 91011>>

  /external/valgrind/main/coregrind/m_gdbserver/
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...]
regcache.h 63 /* *mod set to True if *buf provides a new value. */
64 void supply_register (int n, const void *buf, Bool *mod);
68 *mod set to True if *buf provides a new value. */
69 void supply_register_from_string (int n, const char *buf, Bool *mod);
71 /* *mod set to True if *buf provides a new value. */
72 void supply_register_by_name (const char *name, const void *buf, Bool *mod);
target.c 98 void* VG_(dmemcpy) ( void *d, const void *s, SizeT sz, Bool *mod )
101 *mod = True;
104 *mod = False;
113 Bool *mod)
116 VG_(dmemcpy) (gdbserver, valgrind, sz, mod);
118 VG_(dmemcpy) (valgrind, gdbserver, sz, mod);
  /external/elfutils/libdwfl/
dwfl_module_build_id.c 53 found_build_id (Dwfl_Module *mod, bool set,
60 return 1 + (mod->build_id_len == len
61 && !memcmp (bits, mod->build_id_bits, len));
70 mod->build_id_bits = memcpy (copy, bits, len);
71 mod->build_id_vaddr = vaddr;
72 mod->build_id_len = len;
79 check_notes (Dwfl_Module *mod, bool set, Elf_Data *data, GElf_Addr data_vaddr)
89 return found_build_id (mod, set,
98 __libdwfl_find_build_id (Dwfl_Module *mod, bool set, Elf *elf)
119 result = check_notes (mod, set
    [all...]
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...]
find-debuginfo.c 93 validate (Dwfl_Module *mod, int fd, bool check, GElf_Word debuglink_crc)
96 if (mod->build_id_len > 0)
101 mod->debug.elf = elf_begin (fd, ELF_C_READ_MMAP_PRIVATE, NULL);
102 if (likely (__libdwfl_find_build_id (mod, false, mod->debug.elf) == 2))
104 mod->debug.valid = true;
108 elf_end (mod->debug.elf);
109 mod->debug.elf = NULL;
110 mod->debug.valid = false;
113 return mod->debug.valid
    [all...]
dwfl_module_register_names.c 54 dwfl_module_register_names (mod, func, arg)
55 Dwfl_Module *mod;
61 if (unlikely (mod == NULL))
64 if (unlikely (mod->ebl == NULL))
66 Dwfl_Error error = __libdwfl_module_getebl (mod);
74 int nregs = ebl_register_info (mod->ebl, -1, NULL, 0,
84 ssize_t len = ebl_register_info (mod->ebl, regno, name, sizeof name,
libdwfl.h 68 int (*find_elf) (Dwfl_Module *mod, void **userdata,
72 int (*find_debuginfo) (Dwfl_Module *mod, void **userdata,
83 int (*section_address) (Dwfl_Module *mod, void **userdata,
207 extern const char *dwfl_module_info (Dwfl_Module *mod, void ***userdata,
231 *MOD is always set to the module containing ADDRESS, or to null. */
232 extern int dwfl_addrsegment (Dwfl *dwfl, Dwarf_Addr address, Dwfl_Module **mod);
242 extern int dwfl_module_report_build_id (Dwfl_Module *mod,
255 extern int dwfl_module_build_id (Dwfl_Module *mod,
375 extern int dwfl_linux_proc_find_elf (Dwfl_Module *mod, void **userdata,
388 extern int dwfl_module_relocations (Dwfl_Module *mod);
    [all...]
dwfl_build_id_find_elf.c 57 __libdwfl_open_by_build_id (Dwfl_Module *mod, bool debug, char **file_name)
62 if (mod->build_id_len <= 0)
65 const size_t id_len = mod->build_id_len;
66 const uint8_t *id = mod->build_id_bits;
85 const Dwfl_Callbacks *const cb = mod->dwfl->callbacks;
145 dwfl_build_id_find_elf (Dwfl_Module *mod,
152 int fd = __libdwfl_open_by_build_id (mod, false, file_name);
156 if (__libdwfl_find_build_id (mod, false, *elfp) == 2)
158 mod->main.valid = true;
dwfl_getdwarf.c 61 module_callback (Dwfl_Module *mod, void **userdata,
66 Dwarf *dw = INTUSE(dwfl_module_getdwarf) (mod, &bias);
67 return (*info->callback) (mod, userdata, name, start, dw, bias, info->arg);
  /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/javassist/src/main/javassist/
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/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 94 void lto_module_dispose(lto_module_t mod) {
95 delete mod;
100 const char* lto_module_get_target_triple(lto_module_t mod) {
101 return mod->getTargetTriple();
106 void lto_module_set_target_triple(lto_module_t mod, const char *triple) {
107 return mod->setTargetTriple(triple);
112 unsigned int lto_module_get_num_symbols(lto_module_t mod) {
113 return mod->getSymbolCount();
118 const char* lto_module_get_symbol_name(lto_module_t mod, unsigned int index) {
119 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/av/media/libstagefright/codecs/aacdec/
s_hcb.h 108 Int mod; member in struct:__anon16363
  /external/elfutils/tests/
dwfl-bug-addr-overflow.c 71 Dwfl_Module *mod = dwfl_addrmodule (dwfl, UINT64_C (0xffffffff00010123)); local
72 assert (mod == high);
73 mod = dwfl_addrmodule (dwfl, UINT64_C (0x00010123));
74 assert (mod == low);
75 mod = dwfl_addrmodule (dwfl, UINT64_C (0xffff00010123));
76 assert (mod == middle);
line2addr.c 41 print_address (Dwfl_Module *mod, Dwarf_Addr address)
43 int n = dwfl_module_relocations (mod);
48 int i = dwfl_module_relocate_address (mod, &address);
53 const char *modname = dwfl_module_info (mod, NULL, NULL, NULL,
55 const char *secname = dwfl_module_relocation_info (mod, i, NULL);
76 handle_module (Dwfl_Module *mod __attribute__ ((unused)),
87 if (dwfl_module_getsrc_file (mod, a->file, a->line, 0, &lines, &nlines) == 0)
98 print_address (mod, addr);
  /external/v8/src/ia32/
disasm-ia32.cc 335 static void get_modrm(byte data, int* mod, int* regop, int* rm) {
336 *mod = (data >> 6) & 3;
391 int mod, regop, rm; local
392 get_modrm(*modrmp, &mod, &regop, &rm);
393 RegisterNameMapping register_name = (mod == 3) ? direct_register_name :
395 switch (mod) {
438 mod == 2 ? *reinterpret_cast<int32_t*>(modrmp + 2) : *(modrmp + 2);
448 return mod == 2 ? 6 : 3;
452 mod == 2 ? *reinterpret_cast<int32_t*>(modrmp + 1) : *(modrmp + 1);
454 return mod == 2 ? 5 : 2
491 int mod, regop, rm; local
519 int mod, regop, rm; local
548 int mod, regop, rm; local
581 int mod, regop, rm; local
961 { int mod, regop, rm; local
975 int mod, regop, rm; local
998 int mod, regop, rm; local
1027 int mod, regop, rm; local
1035 int mod, regop, rm; local
1056 int mod, regop, rm; local
1073 int mod, regop, rm; local
1084 int mod, regop, rm; local
1122 int mod, regop, rm; local
1141 int mod, regop, rm; local
1167 int mod, regop, rm; local
1178 int mod, regop, rm; local
1187 int mod, regop, rm; local
1198 int mod, regop, rm; local
1208 int mod, regop, rm; local
1218 int mod, regop, rm; local
1228 int mod, regop, rm; local
1242 int mod, regop, rm; local
1255 int mod, regop, rm; local
1263 int mod, regop, rm; local
1271 int mod, regop, rm; local
1279 int mod, regop, rm; local
1285 int mod, regop, rm; local
1291 int mod, regop, rm; local
1304 int mod, regop, rm; local
1312 int mod, regop, rm; local
1323 int mod, regop, rm; local
1332 int mod, regop, rm; local
1338 int mod, regop, rm; local
1345 int mod, regop, rm; local
1353 int mod, regop, rm; local
1364 int mod, regop, rm; local
1372 int mod, regop, rm; local
1388 int mod, regop, rm; local
1445 int mod, regop, rm; local
1451 int mod, regop, rm; local
1457 int mod, regop, rm; local
1473 int mod, regop, rm; local
1514 int mod, regop, rm; local
1520 int mod, regop, rm; local
1526 int mod, regop, rm; local
1532 int mod, regop, rm; local
1538 int mod, regop, rm; local
1545 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)))
  /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...]
  /external/javassist/src/main/javassist/tools/reflect/
Reflection.java 228 int mod = f.getModifiers(); local
229 if ((mod & Modifier.PUBLIC) != 0 && (mod & Modifier.FINAL) == 0) {
281 int mod = m.getModifiers(); local
282 if (Modifier.isPublic(mod) && !Modifier.isAbstract(mod))
283 processMethods0(mod, clazz, m, i, dontSearch);
287 private void processMethods0(int mod, CtClass clazz,
299 if (Modifier.isNative(mod))
303 if (Modifier.isFinal(mod)) {
360 int mod = f.getModifiers(); local
    [all...]

Completed in 322 milliseconds

1 23 4 5 6 7 8 91011>>