HomeSort by relevance Sort by last modified time
    Searched refs:fn (Results 426 - 450 of 2854) sorted by null

<<11121314151617181920>>

  /external/mdnsresponder/mDNSShared/
dnssd_clientlib.c 111 char *fn = fullName; local
128 if (fn+4 >= lim) goto fail;
129 *fn++ = '\\';
130 *fn++ = '0' + (c / 100);
131 *fn++ = '0' + (c / 10) % 10;
136 if (fn+2 >= lim) goto fail;
137 *fn++ = '\\';
140 if (fn+1 >= lim) goto fail;
141 *fn++ = (char)c;
143 *fn++ = '.'
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
tls-o32.s 
  /external/skia/src/core/
SkICC.cpp 47 void fn_to_table(float* tablePtr, const SkColorSpaceTransferFn& fn) {
52 if (x >= fn.fD) {
53 tablePtr[i] = clamp_0_1(powf(fn.fA * x + fn.fB, fn.fG) + fn.fE);
55 tablePtr[i] = clamp_0_1(fn.fC * x + fn.fF);
73 SkColorSpaceTransferFn fn; local
74 if (this->isNumericalTransferFn(&fn)) {
    [all...]
  /system/extras/sound/
playwav.c 153 int wav_play(const char *fn)
158 fd = open(fn, O_RDONLY);
160 fprintf(stderr, "playwav: cannot open '%s'\n", fn);
174 fprintf(stderr, "playwav: '%s' is not a riff/wave file\n", fn);
179 fprintf(stderr, "playwav: '%s' is not pcm format\n", fn);
183 fprintf(stderr, "playwav: '%s' is not 16bit per sample\n", fn);
193 int wav_rec(const char *fn, unsigned channels, unsigned rate)
217 fd = open(fn, O_CREAT | O_RDWR, 0666);
293 unlink(fn);
297 int mp3_play(const char *fn)
333 const char *fn = 0; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
patchcheck.py 135 python_files = [fn for fn in file_paths if fn.endswith('.py')]
136 c_files = [fn for fn in file_paths if fn.endswith(('.c', '.h'))]
137 doc_files = [fn for fn in file_paths if fn.startswith('Doc')]
finddiv.py 78 fn = os.path.join(dir, name)
79 if os.path.normcase(fn).endswith(".py") or os.path.isdir(fn):
80 files.append(fn)
83 for fn in files:
84 x = process(fn, listnames)
  /bionic/tests/
pthread_dlfcn_test.cpp 51 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "proxy_pthread_atfork")); local
52 ASSERT_TRUE(fn != nullptr) << dlerror();
54 ASSERT_EQ(0, fn(AtForkPrepare2, AtForkParent2, AtForkChild2));
55 ASSERT_EQ(0, fn(AtForkPrepare3, AtForkParent3, AtForkChild3));
96 fn_t fn = reinterpret_cast<fn_t>(dlsym(g_atfork_test_handle, "proxy_pthread_atfork")); local
97 ASSERT_TRUE(fn != nullptr) << dlerror();
dlfcn_test.cpp 204 int (*fn)(void);
205 fn = reinterpret_cast<int (*)(void)>(sym);
206 EXPECT_EQ(4, fn());
341 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "relo_test_get_answer")); local
342 ASSERT_TRUE(fn != nullptr) << dlerror();
343 ASSERT_EQ(1, fn());
375 fn_t fn, fn2; local
376 fn = reinterpret_cast<fn_t>(dlsym(RTLD_DEFAULT, "check_order_dlsym_get_answer"));
377 ASSERT_TRUE(fn != nullptr) << dlerror();
381 ASSERT_EQ(42, fn());
428 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "check_order_reloc_get_answer")); local
455 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "check_order_reloc_get_answer")); local
493 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "check_order_reloc_grandchild_get_answer")); local
539 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "check_order_reloc_nephew_get_answer")); local
566 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle2, "check_order_reloc_get_answer")); local
614 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "check_order_reloc_root_get_answer")); local
1166 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "get_function_version")); local
1176 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "get_function_version")); local
1186 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "get_function_version")); local
1196 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "get_function_version")); local
1206 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "versioned_function")); local
1218 fn_t fn = reinterpret_cast<fn_t>(dlvsym(handle, "versioned_function", "nonversion")); local
1224 fn_t fn = reinterpret_cast<fn_t>(dlvsym(handle, "versioned_function", "TESTLIB_V2")); local
1247 dlopen_b_fn fn = (dlopen_b_fn)dlsym(handle, "dlopen_b"); local
1343 dlopen_b_fn fn = (dlopen_b_fn)dlsym(handle, "dlopen_b"); local
    [all...]
  /bootable/recovery/applypatch/
imgdiff_test.sh 81 local fn=$1
84 unzip -p $START_OTA_PACKAGE $fn > $tmpdir/source
85 unzip -p $END_OTA_PACKAGE $fn > $tmpdir/target
88 echo "patch for $fn is $(size $tmpdir/patch) [of $(size $tmpdir/target)] ($(size $tmpdir/patch.bs) with bsdiff)"
89 echo "$fn $(size $tmpdir/patch) of $(size $tmpdir/target) bsdiff $(size $tmpdir/patch.bs)" >> /tmp/stats.txt
96 || fail "applypatch of $fn failed"
  /external/skia/tests/
ColorSpaceTest.cpp 188 SkColorSpaceTransferFn fn; local
189 fn.fA = 1.0f;
190 fn.fB = 0.0f;
191 fn.fC = 0.0f;
192 fn.fD = 0.0f;
193 fn.fE = 0.0f;
194 fn.fF = 0.0f;
195 fn.fG = 2.2f;
196 sk_sp<SkColorSpace> rgbColorSpace = SkColorSpace::MakeRGB(fn, adobeToxyzD50);
258 SkColorSpaceTransferFn fn; local
283 SkColorSpaceTransferFn fn; local
376 SkColorSpaceTransferFn fn; local
458 SkColorSpaceTransferFn fn; local
478 SkColorSpaceTransferFn fn; local
    [all...]
  /external/valgrind/memcheck/tests/
wrap8.c 61 OrigFn fn; local
62 VALGRIND_GET_ORIG_FN(fn);
65 CALL_FN_W_W(r, fn, n);
75 OrigFn fn; local
76 VALGRIND_GET_ORIG_FN(fn);
79 CALL_FN_W_W(r, fn, n);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/netfilter/
x_tables.h 131 /* fn returns 0 to continue iteration */
132 #define XT_MATCH_ITERATE(type, e, fn, args...) \
143 __ret = fn(__m , ## args); \
150 /* fn returns 0 to continue iteration */
151 #define XT_ENTRY_ITERATE_CONTINUE(type, entries, size, n, fn, args...) \
163 __ret = fn(__entry , ## args); \
170 /* fn returns 0 to continue iteration */
171 #define XT_ENTRY_ITERATE(type, entries, size, fn, args...) \
172 XT_ENTRY_ITERATE_CONTINUE(type, entries, size, 0, fn, args)
  /prebuilts/go/darwin-x86/src/runtime/
sys_x86.go 14 // adjust Gobuf as it if executed a call to fn with context ctxt
16 func gostartcall(buf *gobuf, fn, ctxt unsafe.Pointer) {
25 buf.pc = uintptr(fn)
  /prebuilts/go/linux-x86/src/runtime/
sys_x86.go 14 // adjust Gobuf as it if executed a call to fn with context ctxt
16 func gostartcall(buf *gobuf, fn, ctxt unsafe.Pointer) {
25 buf.pc = uintptr(fn)
  /prebuilts/misc/common/swig/include/2.0.11/lua/
lua_fnptr.i 15 int my_func(int a, int b, SWIGLUA_FN fn);
23 int my_func(int a, int b, SWIGLUA_FN fn)
25 SWIGLUA_FN_GET(fn);
26 lua_pushnumber(fn.L,a);
27 lua_pushnumber(fn.L,b);
28 lua_call(fn.L,2,1); // 2 in, 1 out
29 return luaL_checknumber(fn.L,-1);
44 #define SWIGLUA_FN_GET(fn) {lua_pushvalue(fn.L,fn.idx);
    [all...]
  /external/syslinux/core/fs/pxe/
http_readdir.c 437 const char *fn, *sp; local
440 fn = http_get_filename(inode, buf);
442 if (!fn)
446 if (strchr(fn, '#'))
448 if (strchr(fn, '?'))
452 sp = strchr(fn, '/');
454 if (sp == fn || sp[1])
457 sp = strchr(fn, '\0');
460 if (sp > fn + NAME_MAX)
465 dirent->d_reclen = offsetof(struct dirent, d_name) + (sp-fn) + 1
    [all...]
  /external/skia/tools/
colorspaceinfo.cpp 80 const SkColorSpaceTransferFn& fn = gammas.data(i).params(&gammas); local
82 "E = %.3f, F = %.3f, G = %.3f\n", kRGBChannelNames[i], fn.fA, fn.fB, fn.fC,
83 fn.fD, fn.fE, fn.fF, fn.fG);
92 static inline float parametric(const SkColorSpaceTransferFn& fn, float x) {
93 return x >= fn.fD ? powf(fn.fA*x + fn.fB, fn.fG) + fn.f
99 SkColorSpaceTransferFn fn[4]; local
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
alg.go 194 fn := nod(ODCLFUNC, nil, nil)
196 fn.Func.Nname = newname(sym)
197 fn.Func.Nname.Class = PFUNC
199 fn.Func.Nname.Name.Param.Ntype = tfn
210 funchdr(fn)
211 fn.Func.Nname.Name.Param.Ntype = typecheck(fn.Func.Nname.Name.Param.Ntype, Etype)
245 fn.Nbody.Append(n)
268 fn.Nbody.Append(nod(OAS, nh, call))
285 fn.Nbody.Append(nod(OAS, nh, call)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
alg.go 194 fn := nod(ODCLFUNC, nil, nil)
196 fn.Func.Nname = newname(sym)
197 fn.Func.Nname.Class = PFUNC
199 fn.Func.Nname.Name.Param.Ntype = tfn
210 funchdr(fn)
211 fn.Func.Nname.Name.Param.Ntype = typecheck(fn.Func.Nname.Name.Param.Ntype, Etype)
245 fn.Nbody.Append(n)
268 fn.Nbody.Append(nod(OAS, nh, call))
285 fn.Nbody.Append(nod(OAS, nh, call)
    [all...]
  /build/make/tools/releasetools/
make_recovery_patch 47 def output_sink(fn, data):
48 with open(os.path.join(output_dir, "SYSTEM", *fn.split("/")), "wb") as f:
make_recovery_patch.py 47 def output_sink(fn, data):
48 with open(os.path.join(output_dir, "SYSTEM", *fn.split("/")), "wb") as f:
  /external/chromium-trace/catapult/telemetry/third_party/altgraph/doc/
conf.py 17 fn = os.path.join(
20 for ln in open(fn):
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/doc/
conf.py 17 fn = os.path.join(
20 for ln in open(fn):
  /external/clang/test/SemaTemplate/
instantiate-decl-init.cpp 17 void fn(T t, const arg& arg) { function
22 fn(1, arg());
  /external/compiler-rt/test/tsan/
vptr_harmful_race3.cc 28 static void (A::*fn)() = &A::F; variable
31 (obj->*fn)();

Completed in 3974 milliseconds

<<11121314151617181920>>