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

<<21222324252627282930>>

  /prebuilts/gdb/linux-x86/lib/python2.7/
pkgutil.py 204 for fn in filenames:
205 modname = inspect.getmodulename(fn)
209 path = os.path.join(self.path, fn)
212 if not modname and os.path.isdir(path) and '.' not in fn:
213 modname = fn
219 for fn in dircontents:
220 subname = inspect.getmodulename(fn)
338 for fn in dirlist:
339 if not fn.startswith(_prefix):
342 fn = fn[plen:].split(os.sep
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pkgutil.py 204 for fn in filenames:
205 modname = inspect.getmodulename(fn)
209 path = os.path.join(self.path, fn)
212 if not modname and os.path.isdir(path) and '.' not in fn:
213 modname = fn
219 for fn in dircontents:
220 subname = inspect.getmodulename(fn)
338 for fn in dirlist:
339 if not fn.startswith(_prefix):
342 fn = fn[plen:].split(os.sep
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pkgutil.py 204 for fn in filenames:
205 modname = inspect.getmodulename(fn)
209 path = os.path.join(self.path, fn)
212 if not modname and os.path.isdir(path) and '.' not in fn:
213 modname = fn
219 for fn in dircontents:
220 subname = inspect.getmodulename(fn)
338 for fn in dirlist:
339 if not fn.startswith(_prefix):
342 fn = fn[plen:].split(os.sep
    [all...]
  /external/libffi/src/microblaze/
ffi.c 31 unsigned int, unsigned int, unsigned int*, void (*fn)(void),
151 void ffi_call(ffi_cif* cif, void (*fn)(void), void* rvalue, void** avalue)
169 ecif.rvalue, fn, cif->rtype->type, cif->rtype->size);
284 unsigned long fn = 0; local
294 fn = (unsigned long)ffi_closure_SYSV;
296 /* load r11 (temp) with fn */
297 /* imm fn(upper) */
298 tramp[0] = 0xb0000000 | ((fn >> 16) & 0xffff);
299 /* addik r11, r0, fn(lower) */
300 tramp[1] = 0x31600000 | (fn & 0xffff)
    [all...]
  /external/python/cpython2/Lib/idlelib/
GrepDialog.py 88 for fn in list:
90 with open(fn) as f:
96 (fn, lineno, line))
117 fn = os.path.join(dir, name)
118 if os.path.isdir(fn):
119 subdirs.append(fn)
122 list.append(fn)
  /external/python/cpython2/Lib/test/
test_ntpath.py 9 def tester0(fn, wantResult):
10 gotResult = eval(fn)
13 %(fn, wantResult, gotResult)
15 def tester(fn, wantResult):
16 fn = fn.replace("\\", "\\\\")
17 tester0(fn, wantResult)
  /external/python/cpython2/Modules/_ctypes/libffi/src/microblaze/
ffi.c 31 unsigned int, unsigned int, unsigned int*, void (*fn)(void),
151 void ffi_call(ffi_cif* cif, void (*fn)(void), void* rvalue, void** avalue)
169 ecif.rvalue, fn, cif->rtype->type, cif->rtype->size);
284 unsigned long fn = 0; local
294 fn = (unsigned long)ffi_closure_SYSV;
296 /* load r11 (temp) with fn */
297 /* imm fn(upper) */
298 tramp[0] = 0xb0000000 | ((fn >> 16) & 0xffff);
299 /* addik r11, r0, fn(lower) */
300 tramp[1] = 0x31600000 | (fn & 0xffff)
    [all...]
  /external/python/cpython3/Lib/idlelib/
grep.py 86 for fn in list:
88 with open(fn, errors='replace') as f:
94 (fn, lineno, line))
115 fn = os.path.join(dir, name)
116 if os.path.isdir(fn):
117 subdirs.append(fn)
120 list.append(fn)
  /external/python/cpython3/Modules/_ctypes/libffi/src/microblaze/
ffi.c 31 unsigned int, unsigned int, unsigned int*, void (*fn)(void),
151 void ffi_call(ffi_cif* cif, void (*fn)(void), void* rvalue, void** avalue)
169 ecif.rvalue, fn, cif->rtype->type, cif->rtype->size);
284 unsigned long fn = 0; local
294 fn = (unsigned long)ffi_closure_SYSV;
296 /* load r11 (temp) with fn */
297 /* imm fn(upper) */
298 tramp[0] = 0xb0000000 | ((fn >> 16) & 0xffff);
299 /* addik r11, r0, fn(lower) */
300 tramp[1] = 0x31600000 | (fn & 0xffff)
    [all...]
  /external/valgrind/coregrind/
pub_core_tooliface.h 45 #define VG_TDICT_CALL(fn, args...) \
46 ( vg_assert2(VG_(tdict).fn, \
47 "you forgot to set VgToolInterface function '" #fn "'"), \
48 VG_(tdict).fn(args) )
50 #define VG_TRACK(fn, args...) \
52 if (VG_(tdict).track_##fn) \
53 VG_(tdict).track_##fn(args); \
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
GrepDialog.py 82 for fn in list:
84 f = open(fn)
98 sys.stdout.write("%s: %s: %s\n" % (fn, lineno, line))
119 fn = os.path.join(dir, name)
120 if os.path.isdir(fn):
121 subdirs.append(fn)
124 list.append(fn)
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
GrepDialog.py 82 for fn in list:
84 f = open(fn)
98 sys.stdout.write("%s: %s: %s\n" % (fn, lineno, line))
119 fn = os.path.join(dir, name)
120 if os.path.isdir(fn):
121 subdirs.append(fn)
124 list.append(fn)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
GrepDialog.py 82 for fn in list:
84 f = open(fn)
98 sys.stdout.write("%s: %s: %s\n" % (fn, lineno, line))
119 fn = os.path.join(dir, name)
120 if os.path.isdir(fn):
121 subdirs.append(fn)
124 list.append(fn)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
GrepDialog.py 82 for fn in list:
84 f = open(fn)
98 sys.stdout.write("%s: %s: %s\n" % (fn, lineno, line))
119 fn = os.path.join(dir, name)
120 if os.path.isdir(fn):
121 subdirs.append(fn)
124 list.append(fn)
  /external/tensorflow/tensorflow/contrib/lite/nnapi/
NeuralNetworksShim.h 27 static name##_fn fn = reinterpret_cast<name##_fn>(loadFunction(#name));
29 if (fn != nullptr) { \
30 fn(__VA_ARGS__); \
32 #define EXECUTE_FUNCTION_RETURN(...) return fn != nullptr ? fn(__VA_ARGS__) : 0;
50 void* fn = nullptr; local
52 fn = dlsym(getLibraryHandle(), name);
54 if (fn == nullptr) {
57 return fn;
    [all...]
  /frameworks/rs/driver/runtime/
rs_cl.c     [all...]
  /art/runtime/
native_bridge_art_interface.cc 119 android::NativeBridgeSignalHandlerFn fn = android::NativeBridgeGetSignalHandler(signal); local
120 if (fn != nullptr) {
124 .sc_sigaction = fn,
  /bionic/benchmarks/
bionic_benchmarks.cpp 359 // - Element "fn" Function to benchmark.
372 tinyxml2::XMLNode* fn = doc.FirstChildElement("fn"); local
373 while (fn) {
374 if (fn == fn->ToComment()) {
376 fn = fn->NextSibling();
380 auto fn_elem = fn->FirstChildElement("name");
388 auto* xml_args = fn->FirstChildElement("args")
    [all...]
  /external/libffi/src/bfin/
ffi.c 55 extern void ffi_call_SYSV(unsigned, extended_cif *, void(*)(unsigned char *, extended_cif *), unsigned, void *, void(*fn)(void));
116 * fn = the function to be called
120 void ffi_call(ffi_cif *cif, void(*fn)(void), void *rvalue, void **avalue)
130 ffi_call_SYSV(cif->bytes, &ecif, ffi_prep_args, ret_type, ecif.rvalue, fn);
  /external/python/cpython2/Modules/_ctypes/libffi/src/bfin/
ffi.c 55 extern void ffi_call_SYSV(unsigned, extended_cif *, void(*)(unsigned char *, extended_cif *), unsigned, void *, void(*fn)(void));
116 * fn = the function to be called
120 void ffi_call(ffi_cif *cif, void(*fn)(void), void *rvalue, void **avalue)
130 ffi_call_SYSV(cif->bytes, &ecif, ffi_prep_args, ret_type, ecif.rvalue, fn);
  /external/python/cpython3/Lib/
shlex.py 333 fn = sys.argv[1] variable
334 with open(fn) as f:
335 _print_tokens(shlex(f, fn))
  /external/python/cpython3/Modules/_ctypes/libffi/src/bfin/
ffi.c 55 extern void ffi_call_SYSV(unsigned, extended_cif *, void(*)(unsigned char *, extended_cif *), unsigned, void *, void(*fn)(void));
116 * fn = the function to be called
120 void ffi_call(ffi_cif *cif, void(*fn)(void), void *rvalue, void **avalue)
130 ffi_call_SYSV(cif->bytes, &ecif, ffi_prep_args, ret_type, ecif.rvalue, fn);
  /external/strace/
bpf_filter.c 120 const print_bpf_filter_fn fn; member in struct:bpf_filter_block_data
139 print_bpf_filter_stmt(filter, fbd->fn);
151 struct bpf_filter_block_data fbd = { .fn = print_k };
  /external/tensorflow/tensorflow/python/ops/
functional_ops.py 52 def foldl(fn, elems, initializer=None, parallel_iterations=10, back_prop=True,
56 This foldl operator repeatedly applies the callable `fn` to a sequence
58 unpacked from `elems` on dimension 0. The callable fn takes two tensors as
60 preceding invocation of fn. If `initializer` is None, `elems` must contain
64 of the result tensor is fn(initializer, values[0]).shape`.
67 fn: The callable to be performed.
77 A tensor resulting from applying `fn` consecutively to the list of tensors
81 TypeError: if `fn` is not callable.
90 if not callable(fn):
91 raise TypeError("fn must be callable."
    [all...]
  /external/trappy/trappy/
utils.py 109 # Iterate fast over all rows in a data frame and apply fn
110 def apply_callback(df, fn, *kwargs):
125 fn(event_dict, kwargs)
127 fn(event_dict)

Completed in 556 milliseconds

<<21222324252627282930>>