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

1 2 3 4

  /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}}
  /external/clang/test/CodeGen/
func-ptr-cast-decl.c 6 typedef int (*fptr)(double); typedef
7 void a() { ((fptr)q_sk_num)(0); }
  /external/compiler-rt/test/BlocksRuntime/
constassign.c 22 void (*const fptr)(void) = foo;
25 fptr = bar;
  /external/clang/test/CodeGenCXX/
debug-info-varargs.cpp 23 // CHECK: !DILocalVariable(name: "fptr"
26 void (*fptr)(int, ...) = b;
observe-noexcept.cpp 33 void (*fptr)(void) noexcept = fnoexcp;
38 fptr();
function-template-specialization.cpp 14 void test(int *iptr, float *fptr, int diff) {
19 fptr = next(fptr, diff);
  /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...]
  /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/ceres-solver/internal/ceres/
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()
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()
  /external/ceres-solver/scripts/
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/
klogd.c 40 FILE *fptr = xfopen("/proc/sys/kernel/printk", "w"); local
41 fprintf(fptr, "%u\n", level);
42 fclose(fptr);
43 fptr = NULL;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/ia64/
reloc.s 24 movl r3 = @fptr(esym)
25 .xdata4 .rodata.4, @fptr(esym)
26 .xdata8 .rodata.8, @fptr(esym)
35 mov r2 = @ltoff(@fptr(esym))
36 movl r3 = @ltoff(@fptr(esym))
37 .xdata4 .rodata.4, @ltoff(@fptr(esym))
38 .xdata8 .rodata.8, @ltoff(@fptr(esym))
  /hardware/bsp/intel/peripheral/libupm/src/hcsr04/
hcsr04.h 68 * @param fptr Function pointer to handle rising-edge and
74 HCSR04 (uint8_t triggerPin, uint8_t echoPin, void (*fptr)(void *));
105 HCSR04 (uint8_t triggerPin, uint8_t echoPin, void (*fptr)(void *));
  /toolchain/binutils/binutils-2.25/libiberty/
random.c 189 /* FPTR and RPTR are two pointers into the state info, a front and a rear
199 static long int *fptr = &randtbl[SEP_3 + 1]; variable
240 fptr = &state[rand_sep];
360 fptr = &state[(rear + rand_sep) % rand_deg];
391 *fptr += *rptr;
393 i = (*fptr >> 1) & LONG_MAX;
394 ++fptr;
395 if (fptr >= end_ptr)
397 fptr = state;
  /external/deqp/framework/platform/android/
tcuAndroidInternals.cpp 65 RT* callConstructor4 (GenericFptr fptr, void* memory, size_t memorySize, T1 param1, T2 param2, T3 param3, T4 param4)
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)
107 (void)((ABIFptr)fptr)(obj);
111 ((ABIFptr)fptr)(obj);
115 ((ABIFptr)fptr)(obj)
    [all...]
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/self_test/
inv_self_test.c 254 FILE *fptr; local
284 fptr = fopen(mpu.self_test, "r");
285 if (fptr) {
286 fscanf(fptr, "%d", &self_test_status);
292 fclose(fptr);
316 fptr= fopen(MLCAL_FILE, "rb");
317 if (!fptr) {
322 fread(buffer, 1, packet_sz, fptr);
323 fclose(fptr);
380 fptr = fopen(mpu.self_test, "r")
    [all...]
  /external/selinux/libsemanage/tests/
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/
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...]
  /toolchain/binutils/binutils-2.25/bfd/
vms-misc.c 489 char *fname, *fptr;
502 fptr = strrchr (fout, '/');
503 if (fptr != NULL)
504 fout = fptr + 1;
509 fptr = strrchr (fname, '.');
510 if (fptr != 0)
511 *fptr = 0;
515 fptr = fname;
516 for (fptr = fname; *fptr != 0; fptr++
487 char *fname, *fptr; local
    [all...]

Completed in 473 milliseconds

1 2 3 4