/external/compiler-rt/lib/asan/ |
asan_win_dll_thunk.cc | 108 static fntype fn = (fntype)getRealProcAddressOrDie(#name); \ 109 fn(); \ 116 static fntype fn = (fntype)getRealProcAddressOrDie(#name); \ 117 fn(arg); \ 124 static fntype fn = (fntype)getRealProcAddressOrDie(#name); \ 125 fn(arg1, arg2); \ 132 static fntype fn = (fntype)getRealProcAddressOrDie(#name); \ 133 fn(arg1, arg2, arg3); \ 140 static fntype fn = (fntype)getRealProcAddressOrDie(#name); \ 141 return fn(); \ 208 static fntype fn = 0; local [all...] |
/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue13799.go | 44 // of map. Assign to fn declared outside of loop triggers escape of closure. 48 var fn func() // ERROR "moved to heap: fn$" 50 // var fn func() // this makes it work, because fn stays off heap 52 fn = func() { // ERROR "func literal escapes to heap$" 56 fn() // ERROR "&fn escapes to heap$" 59 fn() 72 // var fn func( [all...] |
/prebuilts/go/linux-x86/test/fixedbugs/ |
issue13799.go | 44 // of map. Assign to fn declared outside of loop triggers escape of closure. 48 var fn func() // ERROR "moved to heap: fn$" 50 // var fn func() // this makes it work, because fn stays off heap 52 fn = func() { // ERROR "func literal escapes to heap$" 56 fn() // ERROR "&fn escapes to heap$" 59 fn() 72 // var fn func( [all...] |
/external/python/cpython2/Doc/tools/ |
rstlint.py | 66 def check_syntax(fn, lines): 74 compile(code, fn, 'exec') 80 def check_suspicious_constructs(fn, lines): 95 def check_whitespace(fn, lines): 107 def check_line_length(fn, lines): 121 def check_leaked_markup(fn, lines): 184 for fn in files: 185 fn = join(root, fn) 186 if fn[:2] == './' [all...] |
/external/python/cpython3/Doc/tools/ |
rstlint.py | 66 def check_syntax(fn, lines): 74 compile(code, fn, 'exec') 80 def check_suspicious_constructs(fn, lines): 95 def check_whitespace(fn, lines): 107 def check_line_length(fn, lines): 121 def check_leaked_markup(fn, lines): 179 for fn in files: 180 fn = join(root, fn) 181 if fn[:2] == './' [all...] |
/bionic/libm/upstream-freebsd/lib/msun/ld128/ |
e_rem_pio2l.h | 65 long double z,w,t,r,fn; local 77 /* Use a specialized rint() to get fn. Assume round-to-nearest. */ 78 fn = x*invpio2+0x1.8p112; 79 fn = fn-0x1.8p112; 81 n = i64rint(fn); 83 n = fn; 85 r = x-fn*pio2_1; 86 w = fn*pio2_1t; /* 1st round good to 180 bit */ 97 w = fn*pio2_2; [all...] |
/bionic/libm/upstream-freebsd/lib/msun/src/ |
e_rem_pio2.c | 57 double z,w,t,r,fn; local 130 /* Use a specialized rint() to get fn. Assume round-to-nearest. */ 131 STRICT_ASSIGN(double,fn,x*invpio2+0x1.8p52); 132 fn = fn-0x1.8p52; 134 n = irint(fn); 136 n = (int32_t)fn; 138 r = x-fn*pio2_1; 139 w = fn*pio2_1t; /* 1st round good to 85 bit */ 148 w = fn*pio2_2; [all...] |
/external/autotest/utils/ |
parallel.py | 30 for fn in function_list: 31 functions[fn] = set() 34 for fn, deps in functions.iteritems(): 35 dependents[fn] = [] 36 for fn, deps in functions.iteritems(): 38 dependents[dep].append(fn) 58 for fn, deps in self.functions.iteritems(): 60 self.ready_to_run.append(fn) 71 fn = self.pid_map.pop(pid) 73 errors.append("%s failed" % fn.__name__ [all...] |
/external/compiler-rt/test/asan/TestCases/Posix/ |
start-deactivated.cc | 42 typedef void (*Fn)(); 59 void *fn = dlsym(dso, "do_another_bad_thing"); local 60 if (!fn) { 70 ((Fn)fn)();
|
/external/eigen/bench/tensors/ |
benchmark.h | 23 Benchmark(const char* name, void (*fn)(int)) { 24 Register(name, fn, NULL); 39 void Register(const char* name, void (*fn)(int), void (*fn_range)(int, int));
|
/external/python/cpython3/Lib/test/test_tools/ |
test_gprof2html.py | 27 fn = os.path.join(tmpdir, 'abc') 28 open(fn, 'w').close() 29 sys.argv = ['gprof2html', fn]
|
test_sundry.py | 33 for fn in os.listdir(scriptsdir): 34 name = fn[:-3] 35 if fn.endswith('.py') and name not in self.skiplist:
|
/external/tensorflow/tensorflow/core/framework/ |
shape_inference_testutil_test.cc | 50 const string& expected_outs, OpShapeInferenceFn fn) { 61 global_fn_ptr = &fn; 139 auto fn = [](InferenceContext* c) { local 145 EXPECT_CONTAINS(RunInferShapes(op, ins, "[?,2,?,d2_0]", fn), 147 EXPECT_CONTAINS(RunInferShapes(op, ins, "[0,2,?,d2_0]", fn), 150 RunInferShapes(op, ins, "[d0_0,2,?,d2_0]", fn), 152 EXPECT_CONTAINS(RunInferShapes(op, ins, "[x,2,?,d2_0]", fn), 155 EXPECT_CONTAINS(RunInferShapes(op, ins, "[d0_0|d0_2,2,?,d2_0]", fn), 158 EXPECT_CONTAINS(RunInferShapes(op, ins, "[d0_1,?,?,d0_0|d2_0]", fn), 163 RunInferShapes(op, ins, "[d0_1,2,8,d0_0|d2_0]", fn)); [all...] |
/external/tensorflow/tensorflow/core/lib/core/ |
threadpool.h | 59 // Schedules fn() for execution in the pool of threads. 60 void Schedule(std::function<void()> fn); 73 std::function<void(int64, int64)> fn); 83 // synchronization. However, the worker fn may be called multiple times 89 // should be allocated by fn the first time that the id is used. 92 const std::function<void(int64, int64, int)>& fn);
|
/external/tensorflow/tensorflow/python/estimator/ |
util_test.py | 30 def fn(a, b): function in function:FnArgsTest.test_simple_function 32 self.assertEqual(('a', 'b'), util.fn_args(fn)) 55 def fn(a, test_arg): function in function:FnArgsTest.test_partial_function 57 return ValueError('partial fn does not work correctly') 60 wrapped_fn = functools.partial(fn, test_arg=123) 67 def fn(test_arg, a): function in function:FnArgsTest.test_partial_function_with_positional_args 69 return ValueError('partial fn does not work correctly') 72 wrapped_fn = functools.partial(fn, 123) 83 def fn(a, test_arg1, test_arg2): function in function:FnArgsTest.test_double_partial 88 wrapped_fn = functools.partial(fn, test_arg2=456 97 def fn(test_arg1, a, test_arg2): function in function:FnArgsTest.test_double_partial_with_positional_args_in_outer_layer 114 def fn(test_arg1, test_arg2, a): function in function:FnArgsTest.test_double_partial_with_positional_args_in_both_layers [all...] |
/libcore/ojluni/src/main/java/sun/nio/fs/ |
MimeTypesFileTypeDetector.java | 40 Path fn = path.getFileName(); local 41 if (fn == null) 44 String ext = getExtension(fn.toString());
|
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/ |
tlsd.s | 8 .globl fn 9 .type fn,@function 10 fn: label
|
tlspic.s | 5 .globl fn 6 .type fn,@function 7 fn: label
|
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/sh/ |
tlspic.s | 3 .global fn 4 .type fn, @function 5 fn: label
|
/packages/apps/Nfc/nci/jni/ |
RoutingManager.cpp | 55 static const char fn[] = "RoutingManager::RoutingManager()"; local 62 "%s: Active SE for Nfc-F is 0x%02X", fn, mDefaultFelicaRoute); 66 << StringPrintf("%s: default route is 0x%02X", fn, mDefaultEe); 101 static const char fn[] = "RoutingManager::initialize()"; local 107 DLOG_IF(INFO, nfc_debug_enabled) << StringPrintf("%s: try ee register", fn); 110 LOG(ERROR) << StringPrintf("%s: fail ee register; error=0x%X", fn, 122 fn, mDefaultOffHostRoute, mDefaultFelicaRoute); 133 << StringPrintf("%s: Number of EE is %d", fn, mEeInfo.num_ee); 141 fn, i, eeHandle, mEeInfo.ee_disc_info[i].la_protocol, 159 << StringPrintf("%s: seTechMask[%u]=0x%02x", fn, i, seTechMask) 365 static const char fn[] = "RoutingManager::addAidRouting"; local 381 static const char fn[] = "RoutingManager::removeAidRouting"; local 394 static const char fn[] = "RoutingManager::commitRouting"; local 408 static const char fn[] = "RoutingManager:onNfccShutdown"; local 534 static const char fn[] = "RoutingManager::stackCallback"; local 589 static const char fn[] = "RoutingManager::nfaEeCallback"; local 712 static const char fn[] = "RoutingManager::registerT3tIdentifier"; local 769 static const char fn[] = "RoutingManager::deregisterT3tIdentifier"; local 809 static const char fn[] = "RoutingManager::nfcFCeCallback"; local 853 static const char fn[] = "RoutingManager::registerJniFunctions"; local [all...] |
/build/make/tools/ |
compare_fileslist.py | 41 for fn,sz in lines: 42 if not data.has_key(fn): 43 data[fn] = {} 44 data[fn][index] = sz 47 for fn,sizes in data.iteritems(): 48 row = [fn] 59 .fn, .sz, .z, .d { 66 .fn { 86 print " <td class='fn'>%s</td>" % cgi.escape(combo) 98 print " <td class='fn'>%s</td>" % cgi.escape(row[0] [all...] |
/build/make/tools/droiddoc/templates-pdk/assets/ |
jquery-history.js | 62 $.fn.history = function(fn) { 63 $(this).bind('history', fn); 66 $.fn.historyadd = function(fn) { 67 $(this).bind('historyadd', fn);
|
/external/clang/test/SemaCXX/ |
decltype.cpp | 24 auto call(F&& fn) -> decltype(fn(T())) { function in struct:Future 25 return fn(T()); 29 auto then(F&& fn) -> decltype(call(fn)) 31 return fn(T());
|
/external/doclava/res/assets/templates/assets/ |
jquery-history.js | 62 $.fn.history = function(fn) { 63 $(this).bind('history', fn); 66 $.fn.historyadd = function(fn) { 67 $(this).bind('historyadd', fn);
|
/frameworks/minikin/app/ |
HyphTool.cpp | 14 Hyphenator* loadHybFile(const char* fn, int minPrefix, int minSuffix, const char* language) { 16 int status = stat(fn, &statbuf); 18 fprintf(stderr, "error opening %s\n", fn); 22 FILE* f = fopen(fn, "rb"); 24 fprintf(stderr, "error opening %s\n", fn); 31 fprintf(stderr, "error reading %s\n", fn);
|