/external/clang/test/Sema/ |
H A D | warn-main-return-type.c | 36 typedef void *(*fptr)(int a); typedef 41 fptr main() { 43 return (fptr) 0; 49 return (fptr) 0;
|
H A D | 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/ |
H A D | func-ptr-cast-decl.c | 6 typedef int (*fptr)(double); typedef 7 void a() { ((fptr)q_sk_num)(0); }
|
H A D | 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/ |
H A D | constassign.c | 22 void (*const fptr)(void) = foo; 25 fptr = bar;
|
/external/clang/test/CodeGenCXX/ |
H A D | debug-info-varargs.cpp | 23 // CHECK: !DILocalVariable(name: "fptr" 26 void (*fptr)(int, ...) = b;
|
H A D | observe-noexcept.cpp | 33 void (*fptr)(void) noexcept = fnoexcp; 38 fptr();
|
H A D | function-template-specialization.cpp | 14 void test(int *iptr, float *fptr, int diff) { argument 19 fptr = next(fptr, diff);
|
/external/ceres-solver/internal/ceres/ |
H A D | generate_eliminator_specialization.py | 207 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 D | generate_partitioned_matrix_view_specializations.py | 208 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 D | system_test.cc | 347 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 D | TreeFilter.java | 79 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 D | 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) { 107 fptr topdown_fptr = new fptr() { 111 fptr bottomup_ftpr = new fptr() {
|
/external/ceres-solver/examples/ |
H A D | bal_problem.cc | 49 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 D | simple_bundle_adjuster.cc | 68 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 D | member-pointers-2.cpp | 45 FuncPtr X0::*fptr; member in class:rdar9065289::X1::X0 49 (p.x0->*(p.fptr))();
|
/external/ceres-solver/scripts/ |
H A D | make_docs.py | 104 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 D | 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/ |
H A D | tcuAndroidInternals.cpp | 65 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 D | test_utilities.c | 51 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 D | t_draw.c | 71 *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 D | DrawPathTest.cpp | 55 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 D | vboot_display_tests.c | 232 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 D | p1.cpp | 21 void (*fptr)() throw(); member in namespace:dyn
|
/external/dhcpcd-6.8.2/ |
H A D | dev.c | 89 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);
|