Searched defs:fptr (Results 1 - 25 of 32) sorted by relevance

12

/external/clang/test/CodeGen/
H A Dfunc-ptr-cast-decl.c6 typedef int (*fptr)(double); typedef
7 void a() { ((fptr)q_sk_num)(0); }
/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/CodeGenCXX/
H A Dfunction-template-specialization.cpp10 void test(int *iptr, float *fptr, int diff) { argument
15 fptr = next(fptr, diff);
/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/clang/test/CXX/except/except.spec/
H A Dp1.cpp21 void (*fptr)() throw(); member in namespace:dyn
/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/internal/ceres/
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);
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/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/libunwind/tests/
H A Dia64-test-dyn1.c42 void *mem, *memend, *addr, *fptr; local
59 fptr = mem;
62 fptr = mem;
81 return fptr;
/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/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/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/wpa_supplicant_8/hostapd/src/eap_peer/
H A Dtncc.c260 void *fptr; local
264 fptr = GetProcAddressA(handle, func);
266 fptr = GetProcAddress(handle, func);
269 fptr = dlsym(handle, func);
272 return fptr;
/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Dtncs.c327 void *fptr; local
329 fptr = dlsym(handle, func);
331 return fptr;
/external/wpa_supplicant_8/src/eap_peer/
H A Dtncc.c260 void *fptr; local
264 fptr = GetProcAddressA(handle, func);
266 fptr = GetProcAddress(handle, func);
269 fptr = dlsym(handle, func);
272 return fptr;
/external/wpa_supplicant_8/src/eap_server/
H A Dtncs.c327 void *fptr; local
329 fptr = dlsym(handle, func);
331 return fptr;
/external/wpa_supplicant_8/wpa_supplicant/src/eap_peer/
H A Dtncc.c260 void *fptr; local
264 fptr = GetProcAddressA(handle, func);
266 fptr = GetProcAddress(handle, func);
269 fptr = dlsym(handle, func);
272 return fptr;
/external/wpa_supplicant_8/wpa_supplicant/src/eap_server/
H A Dtncs.c327 void *fptr; local
329 fptr = dlsym(handle, func);
331 return fptr;
/external/lldb/source/Host/common/
H A DHost.cpp557 HostThreadCreateInfo (const char *name, thread_func_t fptr, thread_arg_t arg) : argument
559 thread_fptr (fptr),

Completed in 745 milliseconds

12