HomeSort by relevance Sort by last modified time
    Searched refs:fn (Results 601 - 625 of 3045) sorted by null

<<21222324252627282930>>

  /external/valgrind/callgrind/
dump.c 120 p->fn = 0;
169 * tag can be "fn", "cfn", "jfn"
171 static void print_fn(VgFile *fp, const HChar* tag, const fn_node* fn)
176 if (fn_dumped[fn->number])
177 VG_(fprintf)(fp, "(%u)\n", fn->number);
179 VG_(fprintf)(fp, "(%u) %s\n", fn->number, fn->name);
180 fn_dumped[fn->number] = True;
184 VG_(fprintf)(fp, "%s\n", fn->name);
207 CLG_ASSERT(cxt->fn[i-1]->pure_cxt != 0)
    [all...]
clo.c 318 static void update_fn_config1(fn_node* fn, fn_config* fnc)
321 fn->dump_before = (fnc->dump_before == CONFIG_TRUE);
324 fn->dump_after = (fnc->dump_after == CONFIG_TRUE);
327 fn->zero_before = (fnc->zero_before == CONFIG_TRUE);
330 fn->toggle_collect = (fnc->toggle_collect == CONFIG_TRUE);
333 fn->skip = (fnc->skip == CONFIG_TRUE);
336 fn->pop_on_jump = (fnc->pop_on_jump == CONFIG_TRUE);
339 fn->group = fnc->group;
342 fn->separate_callers = fnc->separate_callers;
345 fn->separate_recursions = fnc->separate_recursions
    [all...]
  /external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/
vmcore.ml 495 let fn = define_function "use_function" ty m in var
496 let b = builder_at_end context (entry_block fn) in
498 let p1 = param fn 0 in
499 let p2 = param fn 1 in
522 let fn = define_function "user_function" ty m in var
523 let b = builder_at_end context (entry_block fn) in
525 let p1 = param fn 0 in
526 let p2 = param fn 1 in
561 let fn = declare_function "Fn1" ty m in var
562 insist (pointer_type ty = type_of fn);
576 let fn = declare_function "Fn2" ty m in var
582 let fn = define_function "Fn3" ty m in var
590 let fn = define_function "Fn4" ty m in var
604 let fn = define_function "Fn5" ty m in var
613 let fn = define_function "Fn6" ty m in var
700 let fn = declare_function "X" ty m in var
708 let fn = declare_function "X2" ty m in var
713 let fn = declare_function "X3" ty m in var
723 let fn = define_function "X4" ty m in var
731 let fn = define_function "X5" ty m in var
813 let fn = define_function "BuilderParent" fty m in var
831 let fn = declare_function "X6" fty m in var
842 let fn = declare_function "XA6" fty m in var
850 let fn = define_function "X7" fty m in var
1297 let fn = define_function "FunctionPassManager" fty m in var
    [all...]
  /external/python/cpython2/Lib/test/
test_socketserver.py 85 for fn in self.test_files:
87 os.remove(fn)
101 fn = tempfile.mktemp(prefix='unix_socket.', dir=dir)
106 if fn[1] == ':':
107 fn = fn[2:]
108 if fn[0] in (os.sep, os.altsep):
109 fn = fn[1:]
111 fn = fn.replace(os.sep, os.altsep
    [all...]
  /art/disassembler/
disassembler.h 53 ThreadOffsetNameFunction fn)
54 : thread_offset_name_function_(fn),
  /bionic/libc/arch-arm64/bionic/
__bionic_clone.S 31 // pid_t __bionic_clone(int flags, void* child_stack, pid_t* parent_tid, void* tls, pid_t* child_tid, int (*fn)(void*), void* arg);
34 # Push 'fn' and 'arg' onto the child stack.
56 # Call __start_thread with the 'fn' and 'arg' we stored on the child stack.
  /bionic/libc/arch-x86_64/bionic/
__bionic_clone.S 31 // pid_t __bionic_clone(int flags, void* child_stack, pid_t* parent_tid, void* tls, pid_t* child_tid, int (*fn)(void*), void* arg);
33 # Copy 'fn' and 'arg' onto the child stack.
34 movq %r9, -16(%rsi) # fn
68 popq %rdi # fn
  /bootable/recovery/otautil/
SysUtil.cpp 168 bool MemMapping::MapFile(const std::string& fn) {
169 if (fn.empty()) {
174 if (fn[0] == '@') {
176 if (!MapBlockFile(fn.substr(1))) {
177 LOG(ERROR) << "Map of '" << fn << "' failed";
182 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(fn.c_str(), O_RDONLY)));
184 PLOG(ERROR) << "Unable to open '" << fn << "'";
189 LOG(ERROR) << "Map of '" << fn << "' failed";
  /device/google/contexthub/firmware/lib/libm/
ef_rem_pio2.c 105 float z,w,t,r,fn; local
142 fn = (float)n;
143 r = t-fn*pio2_1;
144 w = fn*pio2_1t; /* 1st round good to 40 bit */
155 w = fn*pio2_2;
157 w = fn*pio2_2t-((t-r)-w);
163 w = fn*pio2_3;
165 w = fn*pio2_3t-((t-r)-w);
  /device/linaro/bootloader/arm-trusted-firmware/include/plat/arm/board/common/
v2m_def.h 27 #define V2M_CFGCTRL_FUNC(fn) (fn << V2M_CFGCTRL_FUNC_SHIFT)
  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
e_rem_pio2.c 78 double z,w,t,r,fn; local
116 fn = (double)n;
117 r = t-fn*pio2_1;
118 w = fn*pio2_1t; /* 1st round good to 85 bit */
129 w = fn*pio2_2;
131 w = fn*pio2_2t-((t-r)-w);
137 w = fn*pio2_3;
139 w = fn*pio2_3t-((t-r)-w);
  /external/fdlibm/
e_rem_pio2.c 90 double z,w,t,r,fn; local
126 fn = (double)n;
127 r = t-fn*pio2_1;
128 w = fn*pio2_1t; /* 1st round good to 85 bit */
137 w = fn*pio2_2;
139 w = fn*pio2_2t-((t-r)-w);
144 w = fn*pio2_3;
146 w = fn*pio2_3t-((t-r)-w);
  /external/libffi/src/m88k/
ffi.c 53 void (*fn) ());
232 ffi_call (ffi_cif *cif, void (*fn) (), void *rvalue, void **avalue)
253 ffi_call_OBSD (cif->bytes, &ecif, cif->flags, ecif.rvalue, fn);
373 void *fn; local
378 fn = &ffi_closure_struct_OBSD;
380 fn = &ffi_closure_OBSD;
382 /* or.u %r10, %r0, %hi16(fn) */
383 tramp[0] = 0x5d400000 | (((unsigned int)fn) >> 16);
386 /* or %r10, %r10, %lo16(fn) */
387 tramp[2] = 0x594a0000 | (((unsigned int)fn) & 0xffff)
    [all...]
  /external/llvm/test/Bindings/OCaml/
analysis.ml 26 let fn = define_function "valid_fn" fty m in var
27 let at_entry = builder_at_end context (entry_block fn) in
37 if not (verify_function fn) then bomb "valid function failed verification!";
49 if verify_function fn then bomb "invalid function passed verification!";
ipo.ml 42 let fn = define_function "fn" fty m in var
44 ignore (build_ret (const_int i8_type 4) (builder_at_end context (entry_block fn)));
46 ignore (build_ret (build_call fn [| |] "" b) b);
scalar_opts.ml 41 let fn = define_function "fn" fty m in var
42 ignore (build_ret_void (builder_at_end context (entry_block fn)));
83 ++ PassManager.run_function fn
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_timedwrlock/
2-1.c 50 static void *fn(void *arg) function
113 if (pthread_create(&thread1, NULL, fn, NULL) != 0) {
  /external/python/cpython2/Modules/_ctypes/libffi/src/m88k/
ffi.c 53 void (*fn) ());
232 ffi_call (ffi_cif *cif, void (*fn) (), void *rvalue, void **avalue)
253 ffi_call_OBSD (cif->bytes, &ecif, cif->flags, ecif.rvalue, fn);
373 void *fn; local
378 fn = &ffi_closure_struct_OBSD;
380 fn = &ffi_closure_OBSD;
382 /* or.u %r10, %r0, %hi16(fn) */
383 tramp[0] = 0x5d400000 | (((unsigned int)fn) >> 16);
386 /* or %r10, %r10, %lo16(fn) */
387 tramp[2] = 0x594a0000 | (((unsigned int)fn) & 0xffff)
    [all...]
  /external/python/cpython3/Modules/_ctypes/libffi/src/m88k/
ffi.c 53 void (*fn) ());
232 ffi_call (ffi_cif *cif, void (*fn) (), void *rvalue, void **avalue)
253 ffi_call_OBSD (cif->bytes, &ecif, cif->flags, ecif.rvalue, fn);
373 void *fn; local
378 fn = &ffi_closure_struct_OBSD;
380 fn = &ffi_closure_OBSD;
382 /* or.u %r10, %r0, %hi16(fn) */
383 tramp[0] = 0x5d400000 | (((unsigned int)fn) >> 16);
386 /* or %r10, %r10, %lo16(fn) */
387 tramp[2] = 0x594a0000 | (((unsigned int)fn) & 0xffff)
    [all...]
  /external/python/futures/
crawl.py 57 for name, fn in [('sequential',
69 url_map = fn()
primes.py 39 for name, fn in [('sequential', sequential),
44 if fn() != [True] * len(PRIMES):
  /external/skqp/src/core/
SkImageInfoPriv.h 53 SkColorSpaceTransferFn fn; local
54 if (info.colorSpace() && !info.colorSpace()->isNumericalTransferFn(&fn)) {
  /external/strace/tests/
clone_ptrace.c 61 # define clone(fn, child_stack, flags, arg) \
62 __clone2(fn, child_stack, child_stack_size, flags, arg)
  /external/strace/tests-m32/
clone_ptrace.c 61 # define clone(fn, child_stack, flags, arg) \
62 __clone2(fn, child_stack, child_stack_size, flags, arg)
  /external/strace/tests-mx32/
clone_ptrace.c 61 # define clone(fn, child_stack, flags, arg) \
62 __clone2(fn, child_stack, child_stack_size, flags, arg)

Completed in 680 milliseconds

<<21222324252627282930>>