/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...] |
s_lround.c | 39 #define fn lround macro 56 fn(type x) function
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InjectedScriptHost.idl | 50 [NotEnumerable, Unforgeable, Custom] void debugFunction(any fn); 51 [NotEnumerable, Unforgeable, Custom] void undebugFunction(any fn); 52 [NotEnumerable, Unforgeable, Custom] void monitorFunction(any fn); 53 [NotEnumerable, Unforgeable, Custom] void unmonitorFunction(any fn); 54 [NotEnumerable, Unforgeable, Custom] any callFunction(Function fn, any receiver, optional any[] argv); 55 [NotEnumerable, Unforgeable, Custom] any suppressWarningsAndCallFunction(Function fn, any receiver, optional any[] argv);
|
/external/compiler-rt/test/asan/TestCases/Posix/ |
start-deactivated.cc | 29 typedef void (*Fn)(); 45 void *fn = dlsym(dso, "do_another_bad_thing"); local 46 if (!fn) { 51 ((Fn)fn)();
|
/external/qemu/include/qapi/qmp/ |
dispatch.h | 38 QmpCommandFunc *fn; member in struct:QmpCommand 44 void qmp_register_command(const char *name, QmpCommandFunc *fn, 55 void qmp_for_each_command(qmp_cmd_callback_fn fn, void *opaque);
|
/build/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/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/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/sample/ |
example.cpp | 53 const char *fn = fns[i]; local 54 printf("adding %s\n", fn); 55 error = FT_New_Face(library, fn, 0, &face); 57 printf("error loading %s, %d\n", fn, error); 66 const char *fn = "/system/fonts/DroidSansDevanagari-Regular.ttf"; local 67 error = FT_New_Face(library, fn, 0, &face);
|
/external/clang/test/CodeGenCXX/ |
assign-operator.cpp | 23 template <class T> void fn (T t) { } function in namespace:test1 26 A() { p = fn; }
|
microsoft-abi-typeid.cpp | 12 A* fn(); 26 const std::type_info* test3_typeid() { return &typeid(*fn()); } 28 // CHECK: [[CALL:%.*]] = tail call %struct.A* @"\01?fn@@YAPAUA@@XZ"()
|
/external/clang/test/SemaTemplate/ |
instantiate-decl-init.cpp | 17 void fn(T t, const arg& arg) { function 22 fn(1, arg());
|
/external/llvm/test/Bindings/Ocaml/ |
bitreader.ml | 18 let fn = Sys.argv.(1) in var 21 test (Llvm_bitwriter.write_bitcode_file m fn); 27 let mb = Llvm.MemoryBuffer.of_file fn in 39 let mb = Llvm.MemoryBuffer.of_file (fn ^ ".bogus") in 48 let mb = Llvm.MemoryBuffer.of_file fn in 59 let fn = fn ^ ".txt" in var 60 begin let oc = open_out fn in 68 let mb = Llvm.MemoryBuffer.of_file fn in
|
/external/valgrind/main/none/tests/ |
res_search.c | 8 void* fn(void* arg) function 42 if(0 != pthread_create(&pid, 0, fn, (void*)argv[1]))
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
fdi.h | 197 #define FNALLOC(fn) void *DIAMONDAPI fn(ULONG cb) 200 #define FNFREE(fn) void DIAMONDAPI fn(void *pv) 208 #define FNOPEN(fn) INT_PTR DIAMONDAPI fn(char *pszFile,int oflag,int pmode) 209 #define FNREAD(fn) UINT DIAMONDAPI fn(INT_PTR hf,void *pv,UINT cb) 210 #define FNWRITE(fn) UINT DIAMONDAPI fn(INT_PTR hf,void *pv,UINT cb [all...] |
/system/core/libcutils/ |
load_file.c | 22 void *load_file(const char *fn, unsigned *_sz) 29 fd = open(fn, O_RDONLY);
|
/external/valgrind/main/memcheck/tests/ |
cond_ld_st.c | 353 void do_test_case_steer ( void (*fn)(int,Bool,const TestCase*), 357 if (i == 0) { fn(i,isLd,tc); return; }; 359 if (i == 1) { fn(i,isLd,tc); return; }; 361 if (i == 2) { fn(i,isLd,tc); return; }; 363 if (i == 3) { fn(i,isLd,tc); return; }; 365 if (i == 4) { fn(i,isLd,tc); return; }; 367 if (i == 5) { fn(i,isLd,tc); return; }; 369 if (i == 6) { fn(i,isLd,tc); return; }; 371 if (i == 7) { fn(i,isLd,tc); return; }; 373 if (i == 8) { fn(i,isLd,tc); return; } [all...] |
/bootable/recovery/ |
interlace-frames.py | 28 frames = [Image.open(fn).convert("RGB") for fn in sys.argv[1:-1]] 41 for fn, f in enumerate(frames): 42 out.putpixel((i, j*N+fn), f.getpixel((i, j)))
|
/bootable/recovery/minzip/ |
SysUtil.h | 33 * Map a file into a private, read-only memory segment. If 'fn' 39 int sysMapFile(const char* fn, MemMapping* pMap);
|
/development/ndk/platforms/android-3/include/linux/ |
cpu.h | 32 #define hotcpu_notifier(fn, pri) do { } while (0)
|
/external/libnfc-nci/halimpl/bcm2079x/adaptation/ |
StartupConfig.cpp | 95 static const char fn [] = "StartupConfig::append"; local 98 ALOGE ("%s: exceed max length", fn); 102 ALOGD ("%s: try append %u bytes", fn, (uint8_string::size_type) (newContentLen)); 107 ALOGD ("%s: new size %u bytes", fn, mBuffer[0]);
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
catchptr1.cpp | 8 void fn () {} function 9 struct A {void fn () {}}; function in struct:A 20 throw &fn; 39 throw &A::fn; member in class:A
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
catchptr1.cpp | 8 void fn () {} function 9 struct A {void fn () {}}; function in struct:A 20 throw &fn; 39 throw &A::fn; member in class:A
|
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/ |
cpu.h | 32 #define hotcpu_notifier(fn, pri) do { } while (0)
|
/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/ |
cpu.h | 32 #define hotcpu_notifier(fn, pri) do { } while (0)
|