HomeSort by relevance Sort by last modified time
    Searched defs:fp (Results 551 - 575 of 1027) sorted by null

<<21222324252627282930>>

  /external/clang/test/SemaCXX/
cxx1y-generic-lambdas.cpp 30 T (*fp)(T) = [](auto a) { return a; }; member in struct:test_conversion_to_fptr_2::X
37 void fooT(T t, T (*fp)(T) = [](auto a) { return a; }) {
38 fp(t);
44 int (*fp)(int) = L;
45 fp(5);
57 int (*fp)(int) = L;
67 int (*fp)(int) = L(8);
68 fp(5);
82 int* (*fp)(int) = L(8);
83 fp(5)
871 int (*fp)(int) = [](int i) { return i; }; member in struct:inclass_lambdas_within_nested_classes::ns1::X1
    [all...]
explicit.cpp 226 struct FP {
233 FP fp; local
235 fp(1);
  /external/curl/lib/
cookie.c 888 FILE *fp = NULL; local
908 fp = stdin;
913 fp = NULL;
916 fp = file?fopen(file, FOPEN_READTEXT):NULL;
920 if(fp) {
927 while(fgets(line, MAX_COOKIE_LINE, fp)) {
945 fclose(fp);
958 if(fromfile && fp)
959 fclose(fp);
    [all...]
  /external/curl/lib/vtls/
vtls.c 771 FILE *fp; local
783 fp = fopen(pinnedpubkey, "rb");
784 if(!fp)
789 if(fseek(fp, 0, SEEK_END))
791 filesize = ftell(fp);
792 if(fseek(fp, 0, SEEK_SET))
814 if((int) fread(buf, size, 1, fp) != 1)
844 fclose(fp);
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/
NumberFormatTest.java 35 FieldPosition fp = new FieldPosition(NumberFormat.INTEGER_FIELD); local
36 NumberFormat.getInstance().format(num, buf, fp);
38 assertEquals(0, fp.getBeginIndex());
39 assertEquals(5, fp.getEndIndex());
79 FieldPosition fp = new FieldPosition(NumberFormat.FRACTION_FIELD); local
80 assertEquals("123,456.789", NumberFormat.getInstance().format(123456.789, buf, fp).toString());
81 assertEquals(8, fp.getBeginIndex());
82 assertEquals(11, fp.getEndIndex());
90 FieldPosition fp = new FieldPosition(NumberFormat.Field.GROUPING_SEPARATOR); local
91 assertEquals("123,456", NumberFormat.getInstance().format(123456L, buf, fp).toString())
102 FieldPosition fp = new FieldPosition(0); local
    [all...]
  /external/iproute2/ip/
ipnetns.c 264 FILE *fp = (FILE *)arg; local
286 fprintf(fp, "Deleted ");
289 fprintf(fp, "nsid %u ", nsid);
293 fprintf(fp, "(iproute2 netns name: %s)", c->name);
300 fprintf(fp, "(iproute2 netns name: %s)", name);
304 fprintf(fp, "\n");
305 fflush(fp);
xfrm_policy.c 468 FILE *fp = (FILE*)arg; local
522 fprintf(fp, "Deleted ");
524 fprintf(fp, "Updated ");
526 fprintf(fp, "Expired ");
541 xfrm_policy_info_print(xpinfo, tb, fp, NULL, NULL);
544 fprintf(fp, "\t");
545 fprintf(fp, "hard %u", xpexp->hard);
546 fprintf(fp, "%s", _SL_);
550 fprintf(fp, "\n");
551 fflush(fp);
920 FILE *fp = (FILE*)arg; local
    [all...]
  /external/iputils/ninfod/
ninfod.c 443 FILE *fp; local
458 FILE *fp = NULL; local
463 if ((fp = fopen(opt_p, "r"))) {
464 if (fscanf(fp, "%d", &pid) != 1) {
471 fclose(fp);
476 fp = fopen_excl(opt_p);
477 if (!fp) {
491 if (fp) {
492 fprintf(fp, "%d\n", getpid());
493 fclose(fp);
    [all...]
  /external/libjpeg-turbo/simd/
jsimd_mips_dspr2_asm.h 55 #define fp $30 macro
  /external/lzma/C/
XzEnc.c 413 const CXzFilterProps *fp = props->filterProps; local
416 XzBlock_SetNumFilters(&block, 1 + (fp ? 1 : 0));
418 if (fp)
421 filter->id = fp->id;
423 if (fp->id == XZ_ID_Delta)
425 filter->props[0] = (Byte)(fp->delta - 1);
428 else if (fp->ipDefined)
430 SetUi32(filter->props, fp->ip);
452 if (fp)
455 if (fp->id == XZ_ID_Subblock)
    [all...]
  /external/mdnsresponder/mDNSPosix/
Responder.c 472 static mDNSBool ReadALine(char *buf, size_t bufSize, FILE *fp, mDNSBool skipBlankLines)
480 if (fgets(buf, bufSize, fp) == NULL)
505 FILE * fp = fopen(filePath, "r"); local
507 if (fp == NULL) {
527 if (! ReadALine(name, sizeof(nameBuf), fp, mDNStrue))
543 if (! ReadALine(type, sizeof(type), fp, mDNSfalse))
562 if (! ReadALine(port, sizeof(port), fp, mDNSfalse))
575 if (!ReadALine(rawText, sizeof(rawText), fp, mDNSfalse)) break;
599 } while (!feof(fp));
601 if (!feof(fp)) {
680 FILE *fp; local
    [all...]
  /external/mesa3d/src/gallium/drivers/nv30/
nvfx_fragprog.c 20 struct nv30_fragprog *fp; member in struct:nvfx_fpc
80 struct nv30_fragprog *fp = fpc->fp; local
82 fp->insn_len += size;
83 fp->insn = realloc(fp->insn, sizeof(uint32_t) * fp->insn_len);
89 struct nv30_fragprog *fp = fpc->fp; local
90 uint32_t *hw = &fp->insn[fpc->inst_offset]
162 struct nv30_fragprog *fp = fpc->fp; local
191 struct nv30_fragprog *fp = fpc->fp; local
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_surface.c 435 struct nv50_program *fp; member in struct:nv50_blitctx::__anon19705
443 struct nv50_program fp; member in struct:nv50_blitctx
578 blit->fp.type = PIPE_SHADER_FRAGMENT;
579 blit->fp.translated = TRUE;
580 blit->fp.code = (uint32_t *)code; /* const_cast */
581 blit->fp.code_size = sizeof(code);
582 blit->fp.max_gpr = 5;
583 blit->fp.max_out = 4;
584 blit->fp.in_nr = 1;
585 blit->fp.in[0].mask = 0x7; /* last component flat *
    [all...]
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_surface.c 456 struct nvc0_program *fp; member in struct:nvc0_blitctx::__anon19715
464 struct nvc0_program fp; member in struct:nvc0_blitctx
644 blit->fp.type = PIPE_SHADER_FRAGMENT;
645 blit->fp.translated = TRUE;
647 blit->fp.code = (uint32_t *)code_nve4; /* const_cast */
648 blit->fp.code_size = sizeof(code_nve4);
650 blit->fp.code = (uint32_t *)code_nvc0; /* const_cast */
651 blit->fp.code_size = sizeof(code_nvc0);
653 blit->fp.max_gpr = 4;
655 blit->fp.hdr[0] = 0x00021462; /* fragprog magic *
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_fragprog.c 1318 struct i915_fragment_program *fp = local
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_program.c 503 struct gl_fragment_program *fp; /* we free this temp program below */ local
506 &fp, &variant->bitmap_sampler);
508 variant->parameters = _mesa_clone_parameter_list(fp->Base.Parameters);
509 stfp = st_fragment_program(fp);
514 struct gl_fragment_program *fp; /* we free this temp program below */ local
517 fp = st_make_drawpix_z_stencil_program(st, key->drawpixels_z,
522 st_make_drawpix_fragment_program(st, &stfp->Base, &fp);
523 variant->parameters = _mesa_clone_parameter_list(fp->Base.Parameters);
526 stfp = st_fragment_program(fp);
761 struct gl_fragment_program *fp = &stfp->Base local
    [all...]
  /external/opencv3/3rdparty/libjasper/
jas_stream.c 296 jas_stream_t *jas_stream_freopen(const char *path, const char *mode, FILE *fp)
333 stream->obj_ = JAS_CAST(void *, fp);
914 int jas_stream_display(jas_stream_t *stream, FILE *fp, int n)
932 fprintf(fp, "%08x:", i);
944 fprintf(fp, " %02x", buf[j]);
946 fputc(' ', fp);
948 fprintf(fp, " ");
952 fputc(buf[j], fp);
954 fputc(' ', fp);
957 fprintf(fp, "\n")
1135 FILE *fp; local
1142 FILE *fp; local
1149 FILE *fp; local
1156 FILE *fp; local
    [all...]
  /external/pdfium/samples/
pdfium_test.cc 76 FILE* fp = fopen(filename, "wb"); local
77 if (!fp)
79 fprintf(fp, "P6\n# PDF test render\n%d %d\n255\n", width, height);
95 fwrite(result, out_len, 1, fp);
97 fclose(fp);
122 FILE* fp = fopen(filename, "wb"); local
123 if (!fp) {
129 &png_encoding.front(), 1, png_encoding.size(), fp);
133 (void)fclose(fp);
148 FILE* fp = fopen(filename, "wb") local
    [all...]
  /external/selinux/checkpolicy/test/
dismod.c 75 FILE * fp)
78 fprintf(fp, "{");
81 fprintf(fp, "%s ", perm);
82 fprintf(fp, "}");
86 policydb_t * p, FILE * fp)
90 fprintf(fp, "{");
95 fprintf(fp, " %s", perm);
98 fprintf(fp, " }");
101 static void display_id(policydb_t * p, FILE * fp, uint32_t symbol_type,
109 fprintf(fp, " [%s%s]", prefix, id)
295 FILE *fp; local
500 FILE *fp; local
    [all...]
  /external/selinux/libselinux/src/
audit2why.c 193 FILE *fp; local
203 fp = fopen(path, "r");
204 if (!fp) {
220 fp = fopen(curpolicy, "r");
221 if (!fp) {
234 fclose(fp);
246 fclose(fp);
249 sepol_policy_file_set_fp(pf, fp);
254 fclose(fp);
257 fclose(fp);
    [all...]
selinux_config.c 159 FILE *fp; local
164 fp = fopen(SELINUXCONFIG, "r");
165 if (fp) {
166 __fsetlocking(fp, FSETLOCKING_BYCALLER);
167 while ((len = getline(&line_buf, &line_len, fp)) > 0) {
210 fclose(fp);
  /external/selinux/policycoreutils/secon/
secon.c 347 FILE *fp = NULL; local
353 if (!(fp = fopen(buf, "rb")))
356 ptr = fgets(buf, sizeof(buf), fp);
358 fclose(fp);
  /external/selinux/policycoreutils/setfiles/
restore.c 646 FILE *fp; local
659 fp = fopen("/proc/mounts", "r");
660 if (!fp)
663 while ((num = getline(&buf, &len, fp)) != -1) {
700 fclose(fp);
  /external/skia/src/core/
SkImageFilter.cpp 341 GrFragmentProcessor* fp; local
348 if (this->asFragmentProcessor(&fp, srcTexture, matrix, bounds)) {
349 SkASSERT(fp);
350 paint.addColorFragmentProcessor(fp)->unref();
  /external/skia/src/effects/gradients/
SkRadialGradient.cpp 318 const GrFragmentProcessor* fp = shader->asFragmentProcessor(d->fContext, local
320 GrAlwaysAssert(fp);
321 return fp;

Completed in 760 milliseconds

<<21222324252627282930>>