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

1 2

  /external/clang/test/CodeGen/
func-ptr-cast-decl.c 6 typedef int (*fptr)(double); typedef
7 void a() { ((fptr)q_sk_num)(0); }
  /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}}
return.c 161 void (*fptr)() __attribute__((noreturn)); variable
183 fptr();
  /hardware/invensense/60xx/libsensors_iio/
CompassSensor.IIO.9150.cpp 83 FILE *fptr; local
84 fptr = fopen(compassSysFs.compass_orient, "r");
85 if (fptr != NULL) {
87 fscanf(fptr, "%d,%d,%d,%d,%d,%d,%d,%d,%d",
90 fclose(fptr);
  /external/clang/test/CXX/except/except.spec/
p1.cpp 21 void (*fptr)() throw(); member in namespace:dyn
  /art/compiler/optimizing/
codegen_test.cc 55 typedef int32_t (*fptr)(); typedef
57 fptr f = reinterpret_cast<fptr>(allocator.GetMemory());
60 f = reinterpret_cast<fptr>(reinterpret_cast<uintptr_t>(f) + 1);
  /external/antlr/antlr-3.4/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) {
118 fptr topdown_fptr = new fptr() {
124 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) {
107 fptr topdown_fptr = new fptr() {
111 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/libunwind/tests/
ia64-test-dyn1.c 42 void *mem, *memend, *addr, *fptr; local
59 fptr = mem;
62 fptr = mem;
81 return fptr;
  /external/ceres-solver/examples/
bal_problem.cc 49 void FscanfOrDie(FILE* fptr, const char* format, T* value) {
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, "%lf", observations_ + 2*i + j)
137 FILE* fptr = fopen(filename.c_str(), "w"); local
    [all...]
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, const char *format, T *value)
    [all...]
  /external/ceres-solver/internal/ceres/
linear_least_squares_problems.cc 537 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/chromium_org/third_party/mesa/src/src/mesa/tnl/
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++ = _mesa_half_to_float(in[j])
182 GLfloat *fptr = (GLfloat *)buf; local
    [all...]
  /external/chromium_org/third_party/skia/tests/
DrawPathTest.cpp 54 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[5])
    [all...]
  /external/mesa3d/src/mesa/tnl/
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++ = _mesa_half_to_float(in[j])
182 GLfloat *fptr = (GLfloat *)buf; local
    [all...]
  /external/skia/tests/
DrawPathTest.cpp 54 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[5])
    [all...]
  /hardware/invensense/6515/libsensors_iio/
CompassSensor.IIO.9150.cpp 89 FILE *fptr; local
90 fptr = fopen(compassSysFs.compass_orient, "r");
91 if (fptr != NULL) {
93 if (fscanf(fptr, "%d,%d,%d,%d,%d,%d,%d,%d,%d",
95 &om[6], &om[7], &om[8]) < 0 || fclose(fptr) < 0) {
CompassSensor.IIO.primary.cpp 52 FILE *fptr; local
106 fptr = fopen(compassSysFs.compass_orient, "r");
107 if (fptr != NULL) {
109 if (fscanf(fptr, "%d,%d,%d,%d,%d,%d,%d,%d,%d",
111 &om[6], &om[7], &om[8]) < 0 || fclose(fptr)) {
134 if (fptr == NULL) {
  /hardware/invensense/65xx/libsensors_iio/
CompassSensor.IIO.9150.cpp 89 FILE *fptr; local
90 fptr = fopen(compassSysFs.compass_orient, "r");
91 if (fptr != NULL) {
93 if (fscanf(fptr, "%d,%d,%d,%d,%d,%d,%d,%d,%d",
95 &om[6], &om[7], &om[8]) < 0 || fclose(fptr) < 0) {
CompassSensor.IIO.primary.cpp 52 FILE *fptr; local
106 fptr = fopen(compassSysFs.compass_orient, "r");
107 if (fptr != NULL) {
109 if (fscanf(fptr, "%d,%d,%d,%d,%d,%d,%d,%d,%d",
111 &om[6], &om[7], &om[8]) < 0 || fclose(fptr)) {
134 if (fptr == NULL) {
  /ndk/sources/host-tools/make-3.81/
vmsify.c 224 char *fptr; local
232 fptr = name;
329 fptr = s;
348 if (*fptr == '/')
350 fptr++;
353 else if (*fptr == '.')
355 fptr++;
363 if (*fptr == '/')
365 fptr++;
373 s = strchr (fptr, '/');
    [all...]
vmsjobs.c 50 char *fptr; local
55 fptr = ibuf;
59 if (strcmp (fptr, "/dev/null") != 0)
61 strcpy (fname, vmsify (fptr, 0));
  /bionic/libc/upstream-netbsd/common/lib/libc/stdlib/
random.c 222 * fptr and rptr are two pointers into the state info, a front and a rear
235 static int *fptr = &randtbl[SEP_3 + 1]; variable
297 fptr = &state[rand_sep];
444 fptr = &state[(rear + rand_sep) % rand_deg];
481 f = fptr; r = rptr;
493 fptr = f; rptr = r;

Completed in 1388 milliseconds

1 2