Home
last modified time | relevance | path

Searched defs:x (Results 1 – 25 of 68) sorted by relevance

123

/ndk/sources/host-tools/sed-4.2.1/lib/
Dunlocked-io.h38 # define clearerr(x) clearerr_unlocked (x) argument
40 # define clearerr_unlocked(x) clearerr (x) argument
45 # define feof(x) feof_unlocked (x) argument
47 # define feof_unlocked(x) feof (x) argument
52 # define ferror(x) ferror_unlocked (x) argument
54 # define ferror_unlocked(x) ferror (x) argument
59 # define fflush(x) fflush_unlocked (x) argument
61 # define fflush_unlocked(x) fflush (x) argument
66 # define fgets(x,y,z) fgets_unlocked (x,y,z) argument
68 # define fgets_unlocked(x,y,z) fgets (x,y,z) argument
[all …]
Dstdint.in.h516 #define INT8_C(x) x argument
517 #define UINT8_C(x) x argument
521 #define INT16_C(x) x argument
522 #define UINT16_C(x) x argument
526 #define INT32_C(x) x argument
527 #define UINT32_C(x) x ## U argument
532 # define INT64_C(x) x##L argument
534 # define INT64_C(x) x##i64 argument
536 # define INT64_C(x) x##LL argument
539 # define UINT64_C(x) x##UL argument
[all …]
Dgetdelim.c43 # define flockfile(x) ((void) 0) argument
44 # define funlockfile(x) ((void) 0) argument
/ndk/sources/cxx-stl/stlport/src/
Dnum_put_float.cpp31 #define todigit(x) ((x)+'0') argument
130 static inline bool _Stl_is_nan_or_inf(double x) in _Stl_is_nan_or_inf()
136 static inline bool _Stl_is_neg_nan(double x) { return isnan(x) && ( copysign(1., x) < 0 ); } in _Stl_is_neg_nan()
137 static inline bool _Stl_is_inf(double x) { return isinf(x); } in _Stl_is_inf()
139 static inline bool _Stl_is_neg_inf(double x) { return isinf(x) && x < 0; } in _Stl_is_neg_inf()
143 static inline bool _Stl_is_nan_or_inf(double x) { return IsNANorINF(x); } in _Stl_is_nan_or_inf()
144 static inline bool _Stl_is_inf(double x) { return IsNANorINF(x) && IsINF(x); } in _Stl_is_inf()
145 static inline bool _Stl_is_neg_inf(double x) { return (IsINF(x)) && (x < 0.0); } in _Stl_is_neg_inf()
146 static inline bool _Stl_is_neg_nan(double x) { return IsNegNAN(x); } in _Stl_is_neg_nan()
148 static inline bool _Stl_is_nan_or_inf(double x) { return !_finite(x); } in _Stl_is_nan_or_inf()
[all …]
/ndk/sources/host-tools/nawk-20071023/
Dparse.c34 Node *x; in nodealloc() local
52 Node *x; in node1() local
62 Node *x; in node2() local
73 Node *x; in node3() local
85 Node *x; in node4() local
98 Node *x; in stat1() local
107 Node *x; in stat2() local
116 Node *x; in stat3() local
125 Node *x; in stat4() local
134 Node *x; in op1() local
[all …]
Drun.c37 #define tempfree(x) if (istemp(x)) tfree(x); else argument
140 Cell *x; in execute() local
176 Cell *x; in program() local
226 Node *x; in call() local
321 Cell *copycell(Cell *x) /* make a copy of a cell in a temp */ in copycell()
393 Cell *r, *x; in getline() local
453 Cell *x, *y, *z; in array() local
493 Cell *x, *y; in awkdelete() local
531 Cell *x, *ap, *k; in intest() local
573 Cell *x, *y; in matchop() local
[all …]
/ndk/tests/device/test-gnustl-full/unit/
Dfadapter.h19 explicit pointer_to_void_function(Result (*x)()) : ptr(x) {} in pointer_to_void_function()
33 pointer_to_void_function<Result> ptr_fun(Result (*x)()) { in ptr_fun()
39 pointer_to_void_function<Result> ptr_gen(Result (*x)()) { in ptr_gen()
53 pointer_to_unary_procedure(fun_type x) : ptr(x) {} in pointer_to_unary_procedure()
71 pointer_to_binary_procedure(fun_type x) : ptr(x) {} in pointer_to_binary_procedure()
/ndk/tests/device/test-stlport/unit/
Dfadapter.h19 explicit pointer_to_void_function(Result (*x)()) : ptr(x) {} in pointer_to_void_function()
33 pointer_to_void_function<Result> ptr_fun(Result (*x)()) { in ptr_fun()
39 pointer_to_void_function<Result> ptr_gen(Result (*x)()) { in ptr_gen()
53 pointer_to_unary_procedure(fun_type x) : ptr(x) {} in pointer_to_unary_procedure()
71 pointer_to_binary_procedure(fun_type x) : ptr(x) {} in pointer_to_binary_procedure()
/ndk/tests/build/cpp-extensions/jni/
Dfoo5.C5 int foo5(int x) { in foo5()
Dfoo6.CPP5 int foo6(int x) { in foo6()
Dfoo3.cxx5 int foo3(int x) { in foo3()
Dfoo4.cpp5 int foo4(int x) { in foo4()
Dfoo2.cp5 int foo2(int x) {
Dfoo1.cc3 extern int foo1(int x) { in foo1()
/ndk/tests/build/import-static/bar/
Dbar.c3 int bar(int x) in bar()
/ndk/tests/device/whole-static-libs/jni/
Dfoo2.c5 int foo2(int x) in foo2()
Dfoo.c2 int foo(int x) in foo()
/ndk/tests/build/import-static/jni/
Dmain.c3 int goop(int x) in goop()
/ndk/tests/build/import-install/path2/
Dpath2.c3 int path2(int x) in path2()
/ndk/tests/build/import-static/foo/
Dfoo.c4 int foo(int x) in foo()
/ndk/tests/build/import-install/path1/
Dpath1.c4 int path1(int x) in path1()
/ndk/tests/build/import-install/jni/
Dmain.c3 int foo(int x) in foo()
/ndk/tests/build/gnustl-force-all/jni/
Dforced_all.cpp9 class Foo { int x; }; member in Foo
/ndk/tests/build/gnustl-force-rtti/jni/
Dforced_rtti.cpp9 class Foo { int x; }; member in Foo
/ndk/sources/host-tools/sed-4.2.1/testsuite/
Druntests.c62 int x; in run_a_test() local
123 int x; in main() local

123