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

1 2

  /external/clang/test/Sema/
warn-main-return-type.c 36 typedef void *(*fptr)(int a); typedef
40 fptr main() {
41 return (fptr) 0;
47 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();
  /external/clang/test/CodeGen/
func-ptr-cast-decl.c 6 typedef int (*fptr)(double); typedef
7 void a() { ((fptr)q_sk_num)(0); }
attributes.c 78 void (__attribute__((fastcall)) *fptr)(int);
80 fptr(10);
82 // CHECK: [[FPTRVAR:%[a-z0-9]+]] = load void (i32)** @fptr
  /external/compiler-rt/BlocksRuntime/tests/
constassign.c 22 void (*const fptr)(void) = foo;
25 fptr = bar;
  /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));
  /external/clang/test/CodeGenCXX/
function-template-specialization.cpp 10 void test(int *iptr, float *fptr, int diff) {
15 fptr = next(fptr, diff);
  /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/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/clang/test/SemaCXX/
member-pointers-2.cpp 45 FuncPtr X0::*fptr; member in class:rdar9065289::X1::X0
49 (p.x0->*(p.fptr))();
  /external/skia/tests/
DrawPathTest.cpp 32 const float* fptr = (const float*)raw; local
33 path->moveTo(fptr[0], fptr[1]);
37 const float* fptr = (const float*)raw; local
38 path->cubicTo(fptr[0], fptr[1], fptr[2], fptr[3], fptr[4], fptr[5])
    [all...]
  /hardware/invensense/libsensors_iio/software/simple_apps/self_test/
inv_self_test.c 198 FILE *fptr; local
262 fptr = fopen(mpu.self_test, "r");
263 if (!fptr) {
270 fscanf(fptr, "%d", &self_test_status);
283 fclose(fptr);
329 fptr= fopen(mpu.temperature, "r");
330 if (fptr != NULL) {
331 fscanf(fptr,"%d %ld", &temperature, &timestamp);
332 fclose(fptr);
400 fptr= fopen(MLCAL_FILE, "wb+")
    [all...]
  /external/clang/test/CXX/except/except.spec/
p1.cpp 21 void (*fptr)() throw(); member in namespace:dyn
  /external/webkit/Source/WebCore/platform/
UUID.cpp 86 FILE* fptr = fopen("/proc/sys/kernel/random/uuid", "r");
87 if (!fptr)
90 char* result = fgets(uuidStr, sizeof(uuidStr), fptr);
91 fclose(fptr);
  /external/ceres-solver/internal/ceres/
system_test.cc 335 FILE * fptr = fopen(filename.c_str(), "r"); local
337 if (!fptr) {
342 FscanfOrDie(fptr, "%d", &num_cameras_);
343 FscanfOrDie(fptr, "%d", &num_points_);
344 FscanfOrDie(fptr, "%d", &num_observations_);
358 FscanfOrDie(fptr, "%d", camera_index_ + i);
359 FscanfOrDie(fptr, "%d", point_index_ + i);
361 FscanfOrDie(fptr, "%lf", observations_ + 2*i + j);
366 FscanfOrDie(fptr, "%lf", parameters_ + i);
408 void FscanfOrDie(FILE *fptr, const char *format, T *value)
    [all...]
generate_eliminator_specialization.py 169 fptr = open(output, "w")
170 fptr.write(SPECIALIZATION_FILE % (row_block_size,
173 fptr.close()
linear_least_squares_problems.cc 663 FILE* fptr = fopen(filename.c_str(), "w"); local
664 CHECK_NOTNULL(fptr);
666 fprintf(fptr, "%17f\n", x[i]);
668 fclose(fptr);
696 FILE* fptr = fopen(filename.c_str(), "w"); local
697 CHECK_NOTNULL(fptr);
698 A->ToTextFile(fptr);
699 fclose(fptr);
  /external/libppp/src/
nat_cmd.c 520 char *fptr; local
545 if ((fptr = malloc(bp->m_len)) == NULL) {
551 bp = mbuf_Read(bp, fptr, bp->m_len);
552 PacketAliasSaveFragment(fptr);
554 (unsigned long)((struct ip *)fptr)->ip_id, ++gfrags);
562 while ((fptr = PacketAliasGetFragment(MBUF_CTOP(bp))) != NULL) {
564 PacketAliasFragmentIn(MBUF_CTOP(bp), fptr); local
565 len = ntohs(((struct ip *)fptr)->ip_len);
567 memcpy(MBUF_CTOP(*last), fptr, len);
568 free(fptr);
    [all...]
  /hardware/invensense/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/libxml2/include/libxml/
hash.h 45 * @fptr: pointer to a function
51 * #define XML_CAST_FPTR(fptr) (*(void **)(&fptr))
56 #define XML_CAST_FPTR(fptr) fptr
  /external/oprofile/module/ia64/
IA64syscallstub.h 84 data8 @fptr(post_sys_##name); \
167 data8 @fptr(pre_sys_##name); \

Completed in 959 milliseconds

1 2