/external/skqp/src/core/ |
Sk4px.h | 98 // A generic driver that maps fn over a src array into a dst array. 99 // fn should take an Sk4px (4 src pixels) and return an Sk4px (4 dst pixels). 100 template <typename Fn> 101 static void MapSrc(int n, SkPMColor* dst, const SkPMColor* src, const Fn& fn) { 104 // This looks a bit odd, but it helps loop-invariant hoisting across different calls to fn. 108 Sk4px dst0 = fn(Load4(src+0)), 109 dst4 = fn(Load4(src+4)); 117 fn(Load4(src)).store4(dst); 121 fn(Load2(src)).store2(dst) [all...] |
SkColorSpaceXform_A2B.cpp | 148 auto fn = fAlloc.make<SkColorSpaceTransferFn>(); local 149 SkAssertResult(named_to_parametric(fn, e.gammaNamed())); 151 if (is_just_gamma(*fn)) { 152 fElementsPipeline.append(SkRasterPipeline::gamma, &fn->fG); 154 fElementsPipeline.append(SkRasterPipeline::parametric_r, fn); 155 fElementsPipeline.append(SkRasterPipeline::parametric_g, fn); 156 fElementsPipeline.append(SkRasterPipeline::parametric_b, fn); 178 SkColorSpaceTransferFn fn; local 179 SkAssertResult(gamma_to_parametric(&fn, gammas, channel)); 180 this->addTransferFn(fn, channel) 257 SkColorSpaceTransferFn fn; local [all...] |
/external/valgrind/drd/ |
drd_libstdcxx_intercepts.c | 72 OrigFn fn; local 73 VALGRIND_GET_ORIG_FN(fn); 76 CALL_FN_W_W(ret, fn, guard); 97 OrigFn fn; local 98 VALGRIND_GET_ORIG_FN(fn); 101 CALL_FN_W_W(ret, fn, guard);
|
/external/valgrind/memcheck/tests/ |
wrap5.c | 54 OrigFn fn; local 55 VALGRIND_GET_ORIG_FN(fn); 58 CALL_FN_W_W(r, fn, n); 68 OrigFn fn; local 69 VALGRIND_GET_ORIG_FN(fn); 72 CALL_FN_W_W(r, fn, n);
|
/packages/apps/Nfc/nci/jni/ |
PowerSwitch.cpp | 91 static const char fn[] = "PowerSwitch::initialize"; local 96 "%s: level=%s (%u)", fn, powerLevelToString(level), level); 101 "%s: desired screen-off state=%d", fn, mDesiredScreenOffPowerState); 115 LOG(ERROR) << StringPrintf("%s: not handled", fn); 149 static const char fn[] = "PowerSwitch::setLevel"; local 155 "%s: level=%s (%u)", fn, powerLevelToString(newLevel), newLevel); 162 LOG(ERROR) << StringPrintf("%s: unknown power level", fn); 172 << StringPrintf("%s: wait for deactivation", fn); 197 LOG(ERROR) << StringPrintf("%s: not handled", fn); 202 "%s: actual power level=%s", fn, powerLevelToString(mCurrLevel)) 276 static const char fn[] = "PowerSwitch::setPowerOffSleepState"; local 430 static const char fn[] = "PowerSwitch::abort"; local 449 static const char fn[] = "PowerSwitch::deviceManagementCallback"; local [all...] |
/prebuilts/go/darwin-x86/test/fixedbugs/ |
bug389.go | 10 func fn(a float32) {} func 12 var f func(arg int) = fn // ERROR "cannot use fn .type func.float32.. as type func.int. in assignment|different parameter types"
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
bug389.go | 10 func fn(a float32) {} func 12 var f func(arg int) = fn // ERROR "cannot use fn .type func.float32.. as type func.int. in assignment|different parameter types"
|
/prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/ |
SDL_thread.h | 107 SDL_CreateThread(SDL_ThreadFunction fn, const char *name, void *data, 116 #define SDL_CreateThread(fn, name, data) SDL_CreateThread_REAL(fn, name, data, (pfnSDL_CurrentBeginThread)_beginthreadex, (pfnSDL_CurrentEndThread)_endthreadex) 118 #define SDL_CreateThread(fn, name, data) SDL_CreateThread(fn, name, data, (pfnSDL_CurrentBeginThread)_beginthreadex, (pfnSDL_CurrentEndThread)_endthreadex) 142 SDL_CreateThread(SDL_ThreadFunction fn, const char *name, void *data);
|
/prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/ |
SDL_thread.h | 107 SDL_CreateThread(SDL_ThreadFunction fn, const char *name, void *data, 116 #define SDL_CreateThread(fn, name, data) SDL_CreateThread_REAL(fn, name, data, (pfnSDL_CurrentBeginThread)_beginthreadex, (pfnSDL_CurrentEndThread)_endthreadex) 118 #define SDL_CreateThread(fn, name, data) SDL_CreateThread(fn, name, data, (pfnSDL_CurrentBeginThread)_beginthreadex, (pfnSDL_CurrentEndThread)_endthreadex) 142 SDL_CreateThread(SDL_ThreadFunction fn, const char *name, void *data);
|
/prebuilts/misc/windows/sdl2/include/ |
SDL_thread.h | 107 SDL_CreateThread(SDL_ThreadFunction fn, const char *name, void *data, 116 #define SDL_CreateThread(fn, name, data) SDL_CreateThread_REAL(fn, name, data, (pfnSDL_CurrentBeginThread)_beginthreadex, (pfnSDL_CurrentEndThread)_endthreadex) 118 #define SDL_CreateThread(fn, name, data) SDL_CreateThread(fn, name, data, (pfnSDL_CurrentBeginThread)_beginthreadex, (pfnSDL_CurrentEndThread)_endthreadex) 142 SDL_CreateThread(SDL_ThreadFunction fn, const char *name, void *data);
|
/prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/ |
SDL_thread.h | 107 SDL_CreateThread(SDL_ThreadFunction fn, const char *name, void *data, 116 #define SDL_CreateThread(fn, name, data) SDL_CreateThread_REAL(fn, name, data, (pfnSDL_CurrentBeginThread)_beginthreadex, (pfnSDL_CurrentEndThread)_endthreadex) 118 #define SDL_CreateThread(fn, name, data) SDL_CreateThread(fn, name, data, (pfnSDL_CurrentBeginThread)_beginthreadex, (pfnSDL_CurrentEndThread)_endthreadex) 142 SDL_CreateThread(SDL_ThreadFunction fn, const char *name, void *data);
|
/prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/ |
pass.cpp | 42 for (auto& fn : *module) 43 id2function[fn.result_id()] = &fn; 53 ir::Function* fn = id2function[fi]; local 54 modified = pfn(fn) || modified; 56 AddCalls(fn, &todo);
|
/external/valgrind/helgrind/ |
hg_intercepts.c | 332 OrigFn fn; local 335 VALGRIND_GET_ORIG_FN(fn); 355 CALL_FN_v_W(fn, ptr); 367 void*(*fn)(void*) = (void*(*)(void*))xargs[0]; 389 return (void*) fn( (void*)arg ); 406 OrigFn fn; local 409 VALGRIND_GET_ORIG_FN(fn); 427 CALL_FN_W_WWWW(ret, fn, thread,attr,mythread_wrapper,&xargs[0]); 494 OrigFn fn; local 497 VALGRIND_GET_ORIG_FN(fn); 547 OrigFn fn; local 641 OrigFn fn; local 692 OrigFn fn; local 731 OrigFn fn; local 770 OrigFn fn; local 807 OrigFn fn; local 841 OrigFn fn; local 893 OrigFn fn; local 944 OrigFn fn; local 978 OrigFn fn; local 1034 OrigFn fn; local 1087 OrigFn fn; local 1133 OrigFn fn; local 1176 OrigFn fn; local 1265 OrigFn fn; local 1376 OrigFn fn; local 1437 OrigFn fn; local 1496 OrigFn fn; local 1539 OrigFn fn; local 1578 OrigFn fn; local 1655 OrigFn fn; local 1691 OrigFn fn; local 1729 OrigFn fn; local 1787 OrigFn fn; local 1843 OrigFn fn; local 1888 OrigFn fn; local 1941 OrigFn fn; local 2018 OrigFn fn; local 2065 OrigFn fn; local 2098 OrigFn fn; local 2148 OrigFn fn; local 2196 OrigFn fn; local 2228 OrigFn fn; local 2276 OrigFn fn; local 2308 OrigFn fn; local 2368 OrigFn fn; local 2430 OrigFn fn; local 2483 OrigFn fn; local 2534 OrigFn fn; local 2614 OrigFn fn; local 2660 OrigFn fn; local 2697 OrigFn fn; local 2754 OrigFn fn; local 2815 OrigFn fn; local 2872 OrigFn fn; local 2907 OrigFn fn; local 3032 OrigFn fn; local 3063 OrigFn fn; local 3096 OrigFn fn; local 3132 OrigFn fn; local 3175 OrigFn fn; local 3197 OrigFn fn; local [all...] |
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/sh/ |
tlspic.d | 9 0+000 <fn>: 13 6: c7 08 [ ]*mova 28 <fn\+0x28>,r0 14 8: dc 07 [ ]*mov\.l 28 <fn\+0x28>,r12[ ]+! 0 .* 16 c: d0 02 [ ]*mov\.l 18 <fn\+0x18>,r0[ ]+! 0 .* 19 12: a0 03 [ ]*bra 1c <fn\+0x1c>
|
/external/libese/third_party/NXPNFC_P61_JCOP_Kit/src/ |
JcopOsDownload.cpp | 74 static const char fn [] = "JcopOsDwnld::getJcopOsFileInfo"; local 100 static const char fn [] = "JcopOsDwnld::initialize"; local 102 ALOGD ("%s: enter", fn); 106 ALOGD("%s: insufficient resources, file not present", fn); 120 ALOGD("%s: Memory allocation for IChannel is failed", fn); 130 ALOGD("%s: Memory allocation for SendBuf is failed", fn); 136 ALOGD("%s: Memory allocation failed", fn); 141 ALOGD ("%s: exit", fn); 155 static const char fn [] = "JcopOsDwnld::finalize"; local 156 ALOGD ("%s: enter", fn); 187 static const char fn [] = "JcopOsDwnld::JcopOs_Download"; local 223 static const char fn[] = "JcopOsDwnld::JcopOs_update_seq_handler"; local 266 static const char fn [] = "JcopOsDwnld::TriggerApdu"; local 329 static const char fn [] = "JcopOsDwnld::GetInfo"; local 425 static const char fn [] = "JcopOsDwnld::load_JcopOS_image"; local 572 static const char fn [] = "JcopOsDwnld::GetJcopOsState"; local 644 static const char fn [] = "JcopOsDwnld::SetJcopOsState"; local [all...] |
/external/skia/src/core/ |
SkColorSpaceXform_A2B.cpp | 148 auto fn = fAlloc.make<SkColorSpaceTransferFn>(); local 149 SkAssertResult(named_to_parametric(fn, e.gammaNamed())); 151 if (is_just_gamma(*fn)) { 152 fElementsPipeline.append(SkRasterPipeline::gamma, &fn->fG); 154 fElementsPipeline.append(SkRasterPipeline::parametric_r, fn); 155 fElementsPipeline.append(SkRasterPipeline::parametric_g, fn); 156 fElementsPipeline.append(SkRasterPipeline::parametric_b, fn); 178 SkColorSpaceTransferFn fn; local 179 SkAssertResult(gamma_to_parametric(&fn, gammas, channel)); 180 this->addTransferFn(fn, channel) 257 SkColorSpaceTransferFn fn; local [all...] |
/external/valgrind/helgrind/tests/ |
tc06_two_races_xml.stderr.exp | 52 <fn>pthread_create</fn> 60 <fn>main</fn> 80 <fn>main</fn> 94 <fn>child_fn</fn> 102 <fn>mythread_wrapper</fn> [all...] |
/bionic/libc/bionic/ |
clone.cpp | 40 extern "C" pid_t __bionic_clone(uint32_t flags, void* child_stack, int* parent_tid, void* tls, int* child_tid, int (*fn)(void*), void* arg); 44 extern "C" __LIBC_HIDDEN__ void __start_thread(int (*fn)(void*), void* arg) { 52 int status = (*fn)(arg); 57 int clone(int (*fn)(void*), void* child_stack, int flags, void* arg, ...) { 62 if (fn != nullptr && child_stack == nullptr) { 101 if (fn != nullptr) { 102 clone_result = __bionic_clone(flags, child_stack, parent_tid, new_tls, child_tid, fn, arg);
|
/build/make/tools/ |
check_radio_versions.py | 40 key, fn = item.split(":", 1) 47 f = open(fn, "rb") 53 f = open(fn + ".sha1") 56 print "*** Error opening \"%s.sha1\"; can't verify %s" % (fn, key) 67 print "*** SHA-1 hash of \"%s\" doesn't appear in \"%s.sha1\"" % (fn, fn) 74 fn, versions[digest], key, sys.argv[1])
|
/external/libedit/src/ |
hist.h | 57 #define HIST_FUN_INTERNAL(el, fn, arg) \ 59 fn, arg)) == -1) ? NULL : (el)->el_history.ev.str) 61 #define HIST_FUN(el, fn, arg) \ 62 (((el)->el_flags & NARROW_HISTORY) ? hist_convert(el, fn, arg) : \ 63 HIST_FUN_INTERNAL(el, fn, arg)) 65 #define HIST_FUN(el, fn, arg) HIST_FUN_INTERNAL(el, fn, arg)
|
/toolchain/binutils/binutils-2.27/ld/testsuite/ld-linkonce/ |
y.s | 1 ;# Library file y.s has linkonce entries for fn and fn2. Note 2 ;# that this version of fn has different code, as if compiled 17 .section .gnu.linkonce.t.fn,"ax",@progbits 18 .weak fn 19 .type fn,@function 20 fn: label 24 .size fn,.Lf-.Le
|
/external/libvpx/libvpx/vp8/common/ |
reconintra.c | 54 intra_pred_fn fn; local 61 fn = dc_pred[x->left_available][x->up_available][SIZE_16]; 63 fn = pred[mode][SIZE_16]; 66 fn(ypred_ptr, y_stride, yabove_row, yleft_col); 85 intra_pred_fn fn; local 93 fn = dc_pred[x->left_available][x->up_available][SIZE_8]; 95 fn = pred[uvmode][SIZE_8]; 98 fn(upred_ptr, pred_stride, uabove_row, uleft_col); 99 fn(vpred_ptr, pred_stride, vabove_row, vleft_col);
|
/external/python/cpython2/Mac/scripts/ |
cachersrc.py | 16 for fn in fnames: 17 if fn[-5:] == '.rsrc' and fn[-13:] != '.rsrc.df.rsrc': 20 os.unlink(os.path.join(dirname, fn + '.df.rsrc')) 23 macresource.open_pathname(os.path.join(dirname, fn), verbose=verbose)
|
/external/valgrind/exp-sgcheck/tests/ |
hsg.stderr.exp | 41 <fn>addup_wrongly</fn> 49 <fn>main</fn> 69 <fn>addup_wrongly</fn> 77 <fn>do_other_stuff</fn> 85 <fn>main</fn> [all...] |
/toolchain/binutils/binutils-2.27/ld/testsuite/ld-mips-elf/ |
tlslib-o32.s | 5 .globl fn 6 .ent fn 7 .type fn,@function 8 fn: label 48 .end fn
|