HomeSort by relevance Sort by last modified time
    Searched refs:fptr (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/clang/test/Sema/
warn-main-return-type.c 36 typedef void *(*fptr)(int a); typedef
41 fptr main() {
43 return (fptr) 0;
49 return (fptr) 0;
declspec.c 20 typedef f* fptr; typedef
23 __restrict__ fptr v3; // expected-error {{pointer to function type 'f' (aka 'int (void)') may not be 'restrict' qualified}}
  /external/clang/test/CodeGen/
func-ptr-cast-decl.c 6 typedef int (*fptr)(double); typedef
7 void a() { ((fptr)q_sk_num)(0); }
attributes.c 78 void (__attribute__((fastcall)) *fptr)(int);
80 fptr(10);
82 // CHECK: [[FPTRVAR:%[a-z0-9]+]] = load void (i32)*, void (i32)** @fptr
  /external/compiler-rt/test/BlocksRuntime/
constassign.c 22 void (*const fptr)(void) = foo;
25 fptr = bar;
  /external/clang/test/CodeGenCXX/
debug-info-varargs.cpp 25 // CHECK: !DILocalVariable(name: "fptr"
28 void (*fptr)(int, ...) = b;
observe-noexcept.cpp 33 void (*fptr)(void) noexcept = fnoexcp;
38 fptr();
function-template-specialization.cpp 14 void test(int *iptr, float *fptr, int diff) {
19 fptr = next(fptr, diff);
  /external/catch2/projects/SelfTest/UsageTests/
Decomposition.tests.cpp 36 FILE* fptr = nullptr; variable
37 REQUIRE(fptr == 0);
38 REQUIRE(fptr == 0l);
  /external/antlr/runtime/ObjC/Framework/
TreeFilter.h 84 public interface fptr {
100 public void applyOnce(Object t, fptr whichRule) {
123 fptr topdown_fptr = new fptr() {
129 fptr bottomup_fptr = new fptr() {
153 @interface fptr : NSObject {
161 + (fptr *) newfptr:(TreeFilter *)aTreeFilter Rule:(SEL) aRule;
163 - (fptr *) init:(TreeFilter *)aTreeFilter Rule:(SEL)aRule;
173 fptr *topdown_fptr
    [all...]
TreeVisitorAction.h 67 @class fptr;
72 fptr *TDRule;
73 fptr *BURule;
78 + (TreeVisitorAction *)newTreeVisitorActionFiltered:(TreeFilter *)aFilter RuleD:(fptr *)aTDRule RuleU:(fptr *)aBURule;
79 - (id) initWithFilter:(TreeFilter *)aFilter RuleD:(fptr *)aTDRule RuleU:(fptr *)aBURule;
TreeFilter.m 84 public interface fptr {
100 public void applyOnce(Object t, fptr whichRule) {
123 fptr topdown_fptr = new fptr() {
129 fptr bottomup_fptr = new fptr() {
149 @implementation fptr
151 + (fptr *) newfptr:(TreeFilter *)aTreeFilter Rule:(SEL) aRule
153 return [[fptr alloc] init];
156 - (fptr *) init:(TreeFilter *)aTreeFilter Rule:(SEL)aRul
    [all...]
  /external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeFilter.java 79 public interface fptr { interface in class:TreeFilter
95 public void applyOnce(Object t, fptr whichRule) {
120 fptr topdown_fptr = new fptr() {
127 fptr bottomup_fptr = new fptr() {
TreeRewriter.java 35 public interface fptr { interface in class:TreeRewriter
53 public Object applyOnce(Object t, fptr whichRule) {
76 public Object applyRepeatedly(Object t, fptr whichRule) {
109 fptr topdown_fptr = new fptr() {
114 fptr bottomup_ftpr = new fptr() {
  /external/clang/test/SemaCXX/
member-pointers-2.cpp 45 FuncPtr X0::*fptr; member in class:rdar9065289::X1::X0
49 (p.x0->*(p.fptr))();
  /external/u-boot/include/
g_dnl.h 24 .fptr = callback_ptr \
32 g_dnl_bind_callback_f fptr; member in struct:g_dnl_bind_callback
  /external/libaom/libaom/test/
simd_cmp_impl.h 464 typedef void (*fptr)(); typedef in namespace:SIMD_NAMESPACE::__anon26786
468 fptr ref;
469 fptr simd;
474 #name, reinterpret_cast < fptr > (c_##name), \
475 reinterpret_cast < fptr > (name) \
    [all...]
  /external/toybox/toys/pending/
klogd.c 40 FILE *fptr = xfopen("/proc/sys/kernel/printk", "w"); local
41 fprintf(fptr, "%u\n", level);
42 fclose(fptr);
43 fptr = NULL;
  /external/deqp/framework/platform/android/
tcuAndroidInternals.cpp 65 RT* callConstructor4 (GenericFptr fptr, void* memory, size_t memorySize, T1 param1, T2 param2, T3 param3, T4 param4)
72 (void)((ABIFptr)fptr)(memory, param1, param2, param3, param4);
77 ((ABIFptr)fptr)(memory, param1, param2, param3, param4);
82 ((ABIFptr)fptr)(memory, param1, param2, param3, param4);
87 ((ABIFptr)fptr)(memory, param1, param2, param3, param4);
90 DE_UNREF(fptr);
102 void callDestructor (GenericFptr fptr, T* obj)
107 (void)((ABIFptr)fptr)(obj);
111 ((ABIFptr)fptr)(obj);
115 ((ABIFptr)fptr)(obj)
    [all...]
  /external/selinux/libsemanage/tests/
test_utilities.c 52 FILE *fptr; variable
64 fptr = fdopen(fd, "w+");
65 if (!fptr) {
70 fprintf(fptr, "one\ntwo\nthree\nsigma=foo\n#boo\n#bar\n");
72 rewind(fptr);
297 if (!fptr) {
303 rewind(fptr);
307 rewind(fptr);
323 if (!fptr) {
326 rewind(fptr);
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_draw.c 74 *fptr++ = MACRO(*in); \
83 *fptr++ = (GLfloat)(*in); \
95 * \param fptr output/float array
99 const GLubyte *ptr, GLfloat *fptr,
107 *fptr++ = UBYTE_TO_FLOAT(in[2]); /* red */
108 *fptr++ = UBYTE_TO_FLOAT(in[1]); /* green */
109 *fptr++ = UBYTE_TO_FLOAT(in[0]); /* blue */
110 *fptr++ = UBYTE_TO_FLOAT(in[3]); /* alpha */
117 const GLubyte *ptr, GLfloat *fptr,
126 *fptr++ = _mesa_half_to_float(in[j])
186 GLfloat *fptr = (GLfloat *)buf; local
    [all...]
  /external/ltp/testcases/kernel/fs/doio/
iogen.c 586 struct file_info *fptr; local
632 fptr = &File_List[random_range(0, Nfiles - 1, 1, NULL)];
641 if (fptr->f_type == S_IFREG && (flags->m_flags & FLG_RAW))
642 mult = fptr->f_riou;
644 mult = fptr->f_iou;
654 laststart = fptr->f_lastoffset;
655 lastend = fptr->f_lastoffset + fptr->f_lastlength - 1;
668 if (minlength > fptr->f_length - offset)
671 maxlength = fptr->f_length - offset
1383 struct file_info *fptr; local
    [all...]
  /external/ltp/testcases/network/nfsv4/acl/
acl1.c 49 FILE *fptr; local
51 fptr = malloc(sizeof(FILE));
60 fptr = fopen(filename, "r");
61 if (fptr != NULL) {
63 fclose(fptr);
66 fptr = fopen(filename, "r+");
67 if (fptr != NULL) {
69 fclose(fptr);
  /external/skia/tests/
DrawPathTest.cpp 66 const float* fptr = (const float*)raw; local
67 path->moveTo(fptr[0], fptr[1]);
71 const float* fptr = (const float*)raw; local
72 path->cubicTo(fptr[0], fptr[1], fptr[2], fptr[3], fptr[4], fptr[5])
    [all...]
  /external/skqp/tests/
DrawPathTest.cpp 66 const float* fptr = (const float*)raw; local
67 path->moveTo(fptr[0], fptr[1]);
71 const float* fptr = (const float*)raw; local
72 path->cubicTo(fptr[0], fptr[1], fptr[2], fptr[3], fptr[4], fptr[5])
    [all...]

Completed in 3152 milliseconds

1 2 3