HomeSort by relevance Sort by last modified time
    Searched refs:fn (Results 76 - 100 of 1690) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/skqp/tests/
ParametricStageTest.cpp 12 static void check_error(skiatest::Reporter* r, float limit, skcms_TransferFunction fn) {
24 p.append(SkRasterPipeline::parametric, &fn);
31 float want = (in[i] <= fn.d) ? fn.c * in[i] + fn.f
32 : powf(in[i] * fn.a + fn.b, fn.g) + fn.e;
44 skcms_TransferFunction fn = {0,0,0,0,0,0,0} local
    [all...]
  /external/clang/utils/VtableTest/
gen.cc 155 int fn = old_func + random() % FUNCSPACING + 1; local
156 funcs[i] = fn;
161 || !base_present[ret_type][ret_types[s][fn]])
162 if (ret_types[s][fn]) {
164 ret_types[s][fn], fn);
165 ret_type = ret_types[s][fn];
169 printf(" // Wow found one for s%d for fun%d.\n", s, fn);
170 ret_types[s][fn] = ret_type;
176 g(fn); g("(char *t) { mix(\"vfn this offset\", (char *)this - t); mix(\"vfn uuid\", "); g(++uuid)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/hud/
hud_cpufreq.c 80 get_file_value(const char *fn, uint64_t *KHz)
82 FILE *fh = fopen(fn, "r");
84 fprintf(stderr, "%s error: %s\n", fn, strerror(errno));
165 add_object(const char *name, const char *fn, int objmode, int cpu_index)
170 strcpy(cfi->sysfs_filename, fn);
188 char fn[128]; local
220 snprintf(fn, sizeof(fn), "%s/cpufreq/scaling_cur_freq", basename);
221 if (stat(fn, &stat_buf) < 0)
227 snprintf(fn, sizeof(fn), "%s/cpufreq/scaling_min_freq", basename)
    [all...]
  /external/python/cpython2/Mac/
Extras.install.py 32 for fn in files:
33 if isclean(fn):
35 print "copy", os.path.join(cursrc, fn), os.path.join(curdst, fn)
37 shutil.copy2(os.path.join(cursrc, fn), os.path.join(curdst, fn))
40 print "skipfile", os.path.join(cursrc, fn)
  /external/python/cpython3/Mac/BuildScript/scripts/
postflight.ensurepip 45 for fn ;
47 if [ -e "${RELFWKBIN}/${fn}" ] ; then
48 rm -f ./${fn}
49 ln -s "${RELFWKBIN}/${fn}" "./${fn}"
50 chgrp -h admin "./${fn}"
51 chmod -h g+w "./${fn}"
  /external/python/cpython3/Mac/
Extras.install.py 32 for fn in files:
33 if isclean(fn):
35 print("copy", os.path.join(cursrc, fn), os.path.join(curdst, fn))
37 shutil.copy2(os.path.join(cursrc, fn), os.path.join(curdst, fn))
40 print("skipfile", os.path.join(cursrc, fn))
  /external/libaom/libaom/tools/
aggregate_entropy_stats.py 26 for fn in os.listdir(dir):
27 if sys.argv[2] in fn:
28 stats = np.fromfile(dir + fn, dtype=np.int32)
  /external/python/cpython3/Lib/test/test_tools/
test_pdeps.py 21 fn = os.path.join(tmpdir, 'foo')
22 with open(fn, 'w') as stream:
24 self.pdeps.process(fn, {})
  /external/libaom/libaom/build/cmake/
rtcd.pl 85 my $fn=$_[0];
88 eval "\$${fn}_${opt}=${fn}_${opt}";
93 my $fn = splice(@_, -2, 1);
94 $ALL_FUNCS{$fn} = \@_;
95 specialize $fn, "c";
99 foreach my $fn (keys %ALL_FUNCS) {
101 my $ofn = eval "\$${fn}_${opt}";
106 my $best = eval "\$${fn}_default";
113 eval "\$${fn}_default=${fn}_${opt}"
    [all...]
  /external/libvpx/libvpx/build/make/
rtcd.pl 76 my $fn=$_[0];
79 eval "\$${fn}_${opt}=${fn}_${opt}";
84 my $fn = splice(@_, -2, 1);
85 $ALL_FUNCS{$fn} = \@_;
86 specialize $fn, "c";
90 foreach my $fn (keys %ALL_FUNCS) {
92 my $ofn = eval "\$${fn}_${opt}";
97 my $best = eval "\$${fn}_default";
104 eval "\$${fn}_default=${fn}_${opt}"
    [all...]
  /external/mesa3d/prebuilt-intermediates/main/
dispatch.h 47 #define SET_by_offset(disp, offset, fn) \
51 /* __func__, __LINE__, disp, offset, # fn); */ \
55 ( (_glapi_proc *) (disp) )[offset] = (_glapi_proc) fn; \
    [all...]
  /bionic/libc/bionic/
lfs64_support.cpp 40 int (*fn)(const char*, const struct stat64*, int), int nopenfd) {
41 return ftw(dirpath, reinterpret_cast<ftw_fn>(fn), nopenfd);
45 int (*fn)(const char*, const struct stat64*, int, struct FTW*),
47 return nftw(dirpath, reinterpret_cast<nftw_fn>(fn), nopenfd, flags);
  /external/clang/test/Misc/
backend-stack-frame-diagnostics.cpp 64 auto fn = local
69 fn();
73 auto fn = local
78 fn();
  /external/flatbuffers/samples/
android_sample.sh 21 sampledir=$(readlink -fn `dirname $0`)
22 currentdir=$(readlink -fn `pwd`)
  /external/libdaemon/libdaemon/
dpid.c 63 static char *fn = NULL; local
64 free(fn);
65 asprintf(&fn, "%s/%s.pid", VARRUN, daemon_pid_file_ident ? daemon_pid_file_ident : "unknown");
67 static char fn[PATH_MAX];
68 snprintf(fn, sizeof(fn), "%s/%s.pid", VARRUN, daemon_pid_file_ident ? daemon_pid_file_ident : "unknown");
71 return fn;
100 const char *fn; local
108 if (!(fn = daemon_pid_file_proc())) {
113 if ((fd = open(fn, O_RDWR, 0644)) < 0)
215 const char *fn; local
273 const char *fn; local
    [all...]
  /external/openssh/
dispatch.h 51 #define dispatch_range(from, to, fn) \
52 ssh_dispatch_range(active_state, (from), (to), (fn))
53 #define dispatch_set(type, fn) \
54 ssh_dispatch_set(active_state, (type), (fn))
  /external/skia/src/core/
SkTaskGroup.cpp 13 void SkTaskGroup::add(std::function<void(void)> fn) {
16 fn();
21 void SkTaskGroup::batch(int N, std::function<void(int)> fn) {
26 fn(i);
SkTaskGroup.h 24 void add(std::function<void(void)> fn);
26 // Add a batch of N tasks, all calling fn with different arguments.
27 void batch(int N, std::function<void(int)> fn);
  /external/skqp/src/core/
SkTaskGroup.cpp 13 void SkTaskGroup::add(std::function<void(void)> fn) {
16 fn();
21 void SkTaskGroup::batch(int N, std::function<void(int)> fn) {
26 fn(i);
SkTaskGroup.h 24 void add(std::function<void(void)> fn);
26 // Add a batch of N tasks, all calling fn with different arguments.
27 void batch(int N, std::function<void(int)> fn);
  /external/tensorflow/tensorflow/core/framework/
thread_factory.h 32 // Runs `fn` asynchronously in a different thread. `fn` may block.
37 std::function<void()> fn) = 0;
  /device/linaro/bootloader/arm-trusted-firmware/tools/cert_create/src/tbbr/
tbb_cert.c 23 .fn = NULL,
37 .fn = NULL,
52 .fn = NULL,
66 .fn = NULL,
80 .fn = NULL,
94 .fn = NULL,
108 .fn = NULL,
122 .fn = NULL,
138 .fn = NULL,
152 .fn = NULL
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_lrint.c 38 #define fn lrint macro
49 fn(type x) function
s_nearbyint.c 46 #define DECL(type, fn, rint) \
48 fn(type x) \
  /external/clang/test/Index/
print-type.c 3 int *f(int *p, char *x, FooType z, int arr[5], void (*fn)(int)) {
4 fn(*p);
26 // CHECK: ParmDecl=fn:3:55 (Definition) [type=void (*)(int)] [typekind=Pointer] [canonicaltype=void (*)(int)] [canonicaltypekind=Pointer] [isPOD=1] [pointeetype=void (int)] [pointeekind=Unexposed]
29 // CHECK: CallExpr=fn:3:55 [type=void] [typekind=Void] [args= [int] [Int]] [isPOD=0]
30 // CHECK: DeclRefExpr=fn:3:55 [type=void (*)(int)] [typekind=Pointer] [canonicaltype=void (*)(int)] [canonicaltypekind=Pointer] [isPOD=1] [pointeetype=void (int)] [pointeekind=Unexposed]

Completed in 2817 milliseconds

1 2 34 5 6 7 8 91011>>