Searched refs:fptr (Results 1 - 25 of 58) sorted by relevance

123

/external/clang/test/Sema/
H A Dwarn-main-return-type.c36 typedef void *(*fptr)(int a); typedef
41 fptr main() {
43 return (fptr) 0;
49 return (fptr) 0;
H A Ddeclspec.c20 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/
H A Dfunc-ptr-cast-decl.c6 typedef int (*fptr)(double); typedef
7 void a() { ((fptr)q_sk_num)(0); }
H A Dattributes.c78 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/
H A Dconstassign.c22 void (*const fptr)(void) = foo;
25 fptr = bar;
/external/clang/test/CodeGenCXX/
H A Ddebug-info-varargs.cpp23 // CHECK: !DILocalVariable(name: "fptr"
26 void (*fptr)(int, ...) = b;
H A Dobserve-noexcept.cpp33 void (*fptr)(void) noexcept = fnoexcp;
38 fptr();
H A Dfunction-template-specialization.cpp14 void test(int *iptr, float *fptr, int diff) { argument
19 fptr = next(fptr, diff);
/external/ceres-solver/internal/ceres/
H A Dgenerate_eliminator_specialization.py207 fptr = open(output, "w")
208 fptr.write(HEADER)
216 fptr.write(template % (row_block_size, e_block_size, f_block_size))
217 fptr.close()
H A Dgenerate_partitioned_matrix_view_specializations.py208 fptr = open(output, "w")
209 fptr.write(HEADER)
217 fptr.write(template % (row_block_size, e_block_size, f_block_size))
218 fptr.close()
H A Dsystem_test.cc347 FILE * fptr = fopen(filename.c_str(), "r"); local
349 if (!fptr) {
354 FscanfOrDie(fptr, "%d", &num_cameras_);
355 FscanfOrDie(fptr, "%d", &num_points_);
356 FscanfOrDie(fptr, "%d", &num_observations_);
370 FscanfOrDie(fptr, "%d", camera_index_ + i);
371 FscanfOrDie(fptr, "%d", point_index_ + i);
373 FscanfOrDie(fptr, "%lf", observations_ + 2*i + j);
378 FscanfOrDie(fptr, "%lf", parameters_ + i);
420 void FscanfOrDie(FILE *fptr, cons argument
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeFilter.java79 public interface fptr { interface in class:TreeFilter
95 public void applyOnce(Object t, fptr whichRule) {
118 fptr topdown_fptr = new fptr() {
124 fptr bottomup_fptr = new fptr() {
H A DTreeRewriter.java35 public interface fptr { interface in class:TreeRewriter
53 public Object applyOnce(Object t, fptr whichRule) {
76 public Object applyRepeatedly(Object t, fptr whichRule) {
107 fptr topdown_fptr = new fptr() {
111 fptr bottomup_ftpr = new fptr() {
/external/ceres-solver/examples/
H A Dbal_problem.cc49 void FscanfOrDie(FILE* fptr, const char* format, T* value) { argument
50 int num_scanned = fscanf(fptr, format, value);
72 FILE* fptr = fopen(filename.c_str(), "r"); local
74 if (fptr == NULL) {
80 FscanfOrDie(fptr, "%d", &num_cameras_);
81 FscanfOrDie(fptr, "%d", &num_points_);
82 FscanfOrDie(fptr, "%d", &num_observations_);
96 FscanfOrDie(fptr, "%d", camera_index_ + i);
97 FscanfOrDie(fptr, "%d", point_index_ + i);
99 FscanfOrDie(fptr, "
137 FILE* fptr = fopen(filename.c_str(), "w"); local
[all...]
H A Dsimple_bundle_adjuster.cc68 FILE* fptr = fopen(filename, "r"); local
69 if (fptr == NULL) {
73 FscanfOrDie(fptr, "%d", &num_cameras_);
74 FscanfOrDie(fptr, "%d", &num_points_);
75 FscanfOrDie(fptr, "%d", &num_observations_);
85 FscanfOrDie(fptr, "%d", camera_index_ + i);
86 FscanfOrDie(fptr, "%d", point_index_ + i);
88 FscanfOrDie(fptr, "%lf", observations_ + 2*i + j);
93 FscanfOrDie(fptr, "%lf", parameters_ + i);
100 void FscanfOrDie(FILE *fptr, cons argument
[all...]
/external/clang/test/SemaCXX/
H A Dmember-pointers-2.cpp45 FuncPtr X0::*fptr; member in class:rdar9065289::X1::X0
49 (p.x0->*(p.fptr))();
/external/ceres-solver/scripts/
H A Dmake_docs.py104 with open(name) as fptr:
105 out = fptr.read()
121 with open(name, 'w') as fptr:
122 fptr.write(out)
/external/toybox/toys/pending/
H A Dklogd.c40 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/
H A DtcuAndroidInternals.cpp65 RT* callConstructor4 (GenericFptr fptr, void* memory, size_t memorySize, T1 param1, T2 param2, T3 param3, T4 param4) argument
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) argument
107 (void)((ABIFptr)fptr)(obj);
111 ((ABIFptr)fptr)(obj);
115 ((ABIFptr)fptr)(ob
[all...]
/external/selinux/libsemanage/tests/
H A Dtest_utilities.c51 FILE *fptr; variable
63 fptr = fdopen(fd, "w+");
64 if (!fptr) {
69 fprintf(fptr, "one\ntwo\nthree\nsigma=foo\n#boo\n#bar\n");
71 rewind(fptr);
250 if (!fptr) {
255 rewind(fptr);
259 rewind(fptr);
274 if (!fptr) {
277 rewind(fptr);
[all...]
/external/mesa3d/src/mesa/tnl/
H A Dt_draw.c71 *fptr++ = MACRO(*in); \
80 *fptr++ = (GLfloat)(*in); \
92 * \param fptr output/float array
96 const GLubyte *ptr, GLfloat *fptr,
104 *fptr++ = UBYTE_TO_FLOAT(in[2]); /* red */
105 *fptr++ = UBYTE_TO_FLOAT(in[1]); /* green */
106 *fptr++ = UBYTE_TO_FLOAT(in[0]); /* blue */
107 *fptr++ = UBYTE_TO_FLOAT(in[3]); /* alpha */
114 const GLubyte *ptr, GLfloat *fptr,
123 *fptr
95 convert_bgra_to_float(const struct gl_client_array *input, const GLubyte *ptr, GLfloat *fptr, GLuint count ) argument
113 convert_half_to_float(const struct gl_client_array *input, const GLubyte *ptr, GLfloat *fptr, GLuint count, GLuint sz) argument
140 convert_fixed_to_float(const struct gl_client_array *input, const GLubyte *ptr, GLfloat *fptr, GLuint count) argument
182 GLfloat *fptr = (GLfloat *)buf; local
[all...]
/external/skia/tests/
H A DDrawPathTest.cpp55 const float* fptr = (const float*)raw; local
56 path->moveTo(fptr[0], fptr[1]);
60 const float* fptr = (const float*)raw; local
61 path->cubicTo(fptr[0], fptr[1], fptr[2], fptr[3], fptr[4], fptr[
[all...]
/external/vboot_reference/tests/
H A Dvboot_display_tests.c232 VbFont_t *fptr; local
242 fptr = VbInternalizeFontData((FontArrayHeader *)buf);
243 TEST_PTR_EQ(fptr, buf, "Internalize");
245 TEST_PTR_EQ(VbFindFontGlyph(fptr, 'B', &bufferptr, &buffersize),
248 TEST_PTR_EQ(VbFindFontGlyph(fptr, 'X', &bufferptr, &buffersize),
253 VbRenderTextAtPos(NULL, 0, 0, 0, fptr);
256 VbDoneWithFontForNow(fptr);
/external/clang/test/CXX/except/except.spec/
H A Dp1.cpp21 void (*fptr)() throw(); member in namespace:dyn
/external/dhcpcd-6.8.2/
H A Ddev.c89 void (*fptr)(struct dev *, const struct dev_dhcpcd *);
99 fptr = (void (*)(struct dev *, const struct dev_dhcpcd *))
101 if (fptr == NULL) {
108 fptr(ctx->dev, &dev_dhcpcd);

Completed in 4293 milliseconds

123