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

12

/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}}
H A Dreturn.c161 void (*fptr)() __attribute__((noreturn)); variable
183 fptr();
/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)** @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.cpp19 // CHECK: metadata ![[PST:[0-9]+]], i32 0, i32 0} ; [ DW_TAG_auto_variable ] [fptr] [line [[@LINE+1]]]
20 void (*fptr)(int, ...) = b;
H A Dfunction-template-specialization.cpp10 void test(int *iptr, float *fptr, int diff) { argument
15 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...]
H A Dlinear_least_squares_problems.cc537 FILE* fptr = fopen(filename.c_str(), "w"); local
538 CHECK_NOTNULL(fptr);
540 fprintf(fptr, "%17f\n", x[i]);
542 fclose(fptr);
564 FILE* fptr = fopen(filename.c_str(), "w"); local
565 CHECK_NOTNULL(fptr);
566 A->ToTextFile(fptr);
567 fclose(fptr);
/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/chromium_org/third_party/skia/tests/
H A DDrawPathTest.cpp54 const float* fptr = (const float*)raw; local
55 path->moveTo(fptr[0], fptr[1]);
59 const float* fptr = (const float*)raw; local
60 path->cubicTo(fptr[0], fptr[1], fptr[2], fptr[3], fptr[4], fptr[
[all...]
/external/skia/tests/
H A DDrawPathTest.cpp54 const float* fptr = (const float*)raw; local
55 path->moveTo(fptr[0], fptr[1]);
59 const float* fptr = (const float*)raw; local
60 path->cubicTo(fptr[0], fptr[1], fptr[2], fptr[3], fptr[4], fptr[
[all...]
/external/chromium_org/third_party/mesa/src/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/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/clang/test/CXX/except/except.spec/
H A Dp1.cpp21 void (*fptr)() throw(); member in namespace:dyn
/external/libunwind/tests/
H A Dia64-test-dyn1.c42 void *mem, *memend, *addr, *fptr; local
59 fptr = mem;
62 fptr = mem;
81 return fptr;
/external/chromium_org/third_party/libxml/src/include/libxml/
H A Dhash.h45 * @fptr: pointer to a function
51 * #define XML_CAST_FPTR(fptr) (*(void **)(&fptr))
56 #define XML_CAST_FPTR(fptr) fptr

Completed in 837 milliseconds

12