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

<<11121314151617181920>>

  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/server/
FileContent.java 56 private File fn; field in class:FileContent
59 fn = new File(ROOT,
70 String nm = fn.getName();
90 fc = new RandomAccessFile(fn, "r").getChannel();
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/server/
FileContent.java 56 private File fn; field in class:FileContent
59 fn = new File(ROOT,
70 String nm = fn.getName();
90 fc = new RandomAccessFile(fn, "r").getChannel();
  /system/netd/server/
NFLogListener.h 40 // subscribe() and join() must not be called from the stack of fn().
41 virtual netdutils::Status subscribe(uint16_t nfLogGroup, const DispatchFn& fn) = 0;
46 uint16_t nfLogGroup, uint32_t copyRange, const DispatchFn& fn) = 0;
70 netdutils::Status subscribe(uint16_t nfLogGroup, const DispatchFn& fn) override;
73 uint16_t nfLogGroup, uint32_t copyRange, const DispatchFn& fn) override;
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
elf-rel5.s 15 .ent fn
16 .type fn,@function
17 fn: label
57 .end fn
elf-rel-got-n32.s 15 .globl fn
16 .ent fn
17 .type fn,@function
18 fn: label
62 la $5,fn
64 la $25,fn
66 jal fn
143 .end fn
elf-rel-got-n64.s 15 .globl fn
16 .ent fn
17 .type fn,@function
18 fn: label
62 dla $5,fn
64 dla $25,fn
66 jal fn
144 .end fn
tls-o32.s 5 .globl fn
6 .ent fn
7 .type fn,@function
8 fn: label
57 .end fn
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/sh/
tlsnopic.d 9 0+000 <fn>:
13 6: d0 02 [ ]*mov\.l 10 <fn\+0x10>,r0[ ]+! 0 .*
  /external/libese/third_party/NXPNFC_P61_JCOP_Kit/src/
Ala.cpp 92 static const char fn [] = "Ala_initialize"; local
94 ALOGD ("%s: enter", fn);
103 ALOGD("%s: Memory allocation failed", fn);
118 ALOGD("%s: AID data file does not exists", fn);
134 ALOGE ("%s: exit: Error during read AID data", fn);
151 ALOGD ("%s: exit", fn);
167 static const char fn [] = "Ala_finalize"; local
168 ALOGD ("%s: enter", fn);
176 ALOGD ("%s: exit", fn);
195 static const char fn [] = "Perform_ALA" local
246 static const char fn [] = "GetJsbl_Certificate_ID"; local
284 static const char fn[] = "JsblCerId_seq_handler"; local
319 static const char fn [] = "GetLs_Version"; local
353 static const char fn [] = "GetLs_Version"; local
388 static const char fn[] = "GetVer_seq_handler"; local
423 static const char fn[] = "ls_GetStatus_seqhandler"; local
463 static const char fn[] = "ALA_update_seq_handler"; local
523 static const char fn[] = "ALA_OpenChannel"; local
593 static const char fn[] = "ALA_SelectAla"; local
716 static const char fn[] = "ALA_StoreData"; local
784 static const char fn [] = "ALA_loadapplet"; local
1066 static const char fn[] = "ALA_Check_KeyIdentifier"; local
1307 static const char fn[]="ALA_ReadScript"; local
1451 static const char fn [] = "ALA_SendtoEse"; local
1571 static const char fn [] = "ALA_SendtoAla"; local
1617 static const char fn [] = "ALA_CloseChannel"; local
1688 static const char fn [] = "ALA_ProcessResp"; local
1865 static const char fn[] = "Process_EseResponse"; local
1947 static const char fn[]="Process_SelectRsp"; local
    [all...]
  /external/fio/lib/
bloom.c 23 uint32_t (*fn)(const void *, uint32_t, uint32_t); member in struct:bloom_hash
41 .fn = jhash,
45 .fn = XXH32,
49 .fn = murmurhash3,
53 .fn = bloom_crc32c,
57 .fn = bloom_fnv,
96 hash[i] = hashes[i].fn(data, len, hashes[i].seed);
  /external/valgrind/callgrind/
callstack.c 117 static void function_entered(fn_node* fn)
119 CLG_ASSERT(fn != 0);
122 if (fn->verbosity >=0) {
124 CLG_(clo).verbose = fn->verbosity;
125 fn->verbosity = old;
128 fn->name, CLG_(clo).verbose);
132 if (fn->dump_before) {
133 HChar trigger[VG_(strlen)(fn->name) + 20];
134 VG_(sprintf)(trigger, "--dump-before=%s", fn->name);
137 else if (fn->zero_before)
    [all...]
  /system/security/keystore/
keystore_aidl_hidl_marshalling_utils.h 29 template <typename Fn, typename... Args>
30 inline auto nullable(Fn fn, const android::Parcel& in, Args&&... args)
31 -> NullOr<decltype(fn(in, std::forward<Args>(args)...))> {
36 return fn(in, std::forward<Args>(args)...);
38 template <typename Fn, typename Arg>
39 inline android::status_t nullable(Fn fn, const NullOr<Arg>& arg, android::Parcel* out) {
46 return fn(arg.value(), out);
48 template <typename Fn, typename Arg
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
objgraph.py 75 fn, name, type = s[r1a:r1b], s[r3a:r3b], s[r2a:r2b]
77 store(def2file, name, fn)
78 store(file2def, fn, name)
80 store(file2undef, fn, name)
81 store(undef2file, name, fn)
83 print fn + ':' + name + ': unknown type ' + type
119 for fn in callers:
120 if fn <> lastfn:
121 print '\t' + fn
122 lastfn = fn
    [all...]
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')]
  /external/python/cpython2/Tools/scripts/
objgraph.py 75 fn, name, type = s[r1a:r1b], s[r3a:r3b], s[r2a:r2b]
77 store(def2file, name, fn)
78 store(file2def, fn, name)
80 store(file2undef, fn, name)
81 store(undef2file, name, fn)
83 print fn + ':' + name + ': unknown type ' + type
119 for fn in callers:
120 if fn <> lastfn:
121 print '\t' + fn
122 lastfn = fn
    [all...]
  /external/python/cpython3/Tools/scripts/
objgraph.py 75 fn, name, type = s[r1a:r1b], s[r3a:r3b], s[r2a:r2b]
77 store(def2file, name, fn)
78 store(file2def, fn, name)
80 store(file2undef, fn, name)
81 store(undef2file, name, fn)
83 print(fn + ':' + name + ': unknown type ' + type)
117 for fn in callers:
118 if fn != lastfn:
119 print('\t' + fn)
120 lastfn = fn
    [all...]
  /system/core/libunwindstack/
RegsX86.cpp 72 void RegsX86::IterateRegisters(std::function<void(const char*, uint64_t)> fn) {
73 fn("eax", regs_[X86_REG_EAX]);
74 fn("ebx", regs_[X86_REG_EBX]);
75 fn("ecx", regs_[X86_REG_ECX]);
76 fn("edx", regs_[X86_REG_EDX]);
77 fn("ebp", regs_[X86_REG_EBP]);
78 fn("edi", regs_[X86_REG_EDI]);
79 fn("esi", regs_[X86_REG_ESI]);
80 fn("esp", regs_[X86_REG_ESP]);
81 fn("eip", regs_[X86_REG_EIP])
    [all...]
  /external/fio/crc/
test.c 33 void (*fn)(struct test_type *, void *, size_t); member in struct:test_type
248 .fn = t_md5,
253 .fn = t_crc64,
258 .fn = t_crc32,
263 .fn = t_crc32c,
268 .fn = t_crc16,
273 .fn = t_crc7,
278 .fn = t_sha1,
283 .fn = t_sha256,
288 .fn = t_sha512
    [all...]
  /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...]
  /external/skia/src/core/
SkICC.cpp 43 void fn_to_table(float* tablePtr, const SkColorSpaceTransferFn& fn) {
48 if (x >= fn.fD) {
49 tablePtr[i] = clamp_0_1(powf(fn.fA * x + fn.fB, fn.fG) + fn.fE);
51 tablePtr[i] = clamp_0_1(fn.fC * x + fn.fF);
69 SkColorSpaceTransferFn fn; local
70 if (this->isNumericalTransferFn(&fn)) {
    [all...]
  /external/skqp/src/core/
SkICC.cpp 43 void fn_to_table(float* tablePtr, const SkColorSpaceTransferFn& fn) {
48 if (x >= fn.fD) {
49 tablePtr[i] = clamp_0_1(powf(fn.fA * x + fn.fB, fn.fG) + fn.fE);
51 tablePtr[i] = clamp_0_1(fn.fC * x + fn.fF);
69 SkColorSpaceTransferFn fn; local
70 if (this->isNumericalTransferFn(&fn)) {
    [all...]
  /system/extras/sound/
playwav.c 154 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...]
  /external/skia/tests/
ColorSpaceTest.cpp 208 SkColorSpaceTransferFn fn; local
209 fn.fA = 1.0f;
210 fn.fB = 0.0f;
211 fn.fC = 1.0f;
212 fn.fD = 0.5f;
213 fn.fE = 0.0f;
214 fn.fF = 0.0f;
215 fn.fG = 1.0f;
217 test_serialize(r, SkColorSpace::MakeRGB(fn, toXYZ).get(), false);
231 SkColorSpaceTransferFn fn; local
393 SkColorSpaceTransferFn fn; local
413 SkColorSpaceTransferFn fn; local
    [all...]
  /external/skqp/tests/
ColorSpaceTest.cpp 208 SkColorSpaceTransferFn fn; local
209 fn.fA = 1.0f;
210 fn.fB = 0.0f;
211 fn.fC = 1.0f;
212 fn.fD = 0.5f;
213 fn.fE = 0.0f;
214 fn.fF = 0.0f;
215 fn.fG = 1.0f;
217 test_serialize(r, SkColorSpace::MakeRGB(fn, toXYZ).get(), false);
231 SkColorSpaceTransferFn fn; local
393 SkColorSpaceTransferFn fn; local
413 SkColorSpaceTransferFn fn; local
    [all...]
  /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();

Completed in 776 milliseconds

<<11121314151617181920>>