HomeSort by relevance Sort by last modified time
    Searched refs:fp (Results 251 - 275 of 1325) sorted by null

<<11121314151617181920>>

  /external/oprofile/libop/
op_cpu_type.c 129 FILE * fp; local
131 fp = fopen("/proc/sys/dev/oprofile/cpu_type", "r");
132 if (!fp) {
134 fp = fopen("/dev/oprofile/cpu_type", "r");
135 if (!fp) {
142 if (!fgets(str, 99, fp)) {
152 fclose(fp);
  /external/blktrace/
blkiomon.c 69 FILE *fp; member in struct:output
113 fprintf(debug.fp, "--- %s ---\n", descr);
114 fprintf(debug.fp, "magic %16d\n", bit->magic);
115 fprintf(debug.fp, "sequence %16d\n", bit->sequence);
116 fprintf(debug.fp, "time %16ld\n", (unsigned long)bit->time);
117 fprintf(debug.fp, "sector %16ld\n", (unsigned long)bit->sector);
118 fprintf(debug.fp, "bytes %16d\n", bit->bytes);
119 fprintf(debug.fp, "action %16x\n", bit->action);
120 fprintf(debug.fp, "pid %16d\n", bit->pid);
121 fprintf(debug.fp, "device %16d\n", bit->device)
    [all...]
  /external/chromium_org/third_party/skia/include/gpu/
GrPaint.h 90 const GrFragmentProcessor* addColorProcessor(const GrFragmentProcessor* fp) {
91 SkASSERT(fp);
92 if (!fp->willUseInputColor()) {
95 SkNEW_APPEND_TO_TARRAY(&fColorStages, GrProcessorStage, (fp));
96 return fp;
102 const GrFragmentProcessor* addCoverageProcessor(const GrFragmentProcessor* fp) {
103 SkASSERT(fp);
104 if (!fp->willUseInputColor()) {
107 SkNEW_APPEND_TO_TARRAY(&fCoverageStages, GrProcessorStage, (fp));
108 return fp;
    [all...]
  /external/iproute2/tc/
tc_stab.c 119 void print_size_table(FILE *fp, const char *prefix, struct rtattr *rta)
131 fprintf(fp, "%s", prefix);
133 fprintf(fp, "linklayer %s ",
136 fprintf(fp, "overhead %d ", s.overhead);
138 fprintf(fp, "mpu %u ", s.mpu);
140 fprintf(fp, "mtu %u ", s.mtu);
142 fprintf(fp, "tsize %u ", s.tsize);
151 fprintf(fp, "\n%sstab data:", prefix);
153 fprintf(fp, "\n%s %3u:", prefix, i * 12);
155 fprintf(fp, " %05x", data[i * 12 + j])
    [all...]
tc_qdisc.c 201 FILE *fp = (FILE*)arg; local
230 fprintf(fp, "deleted ");
232 fprintf(fp, "qdisc %s %x: ", rta_getattr_str(tb[TCA_KIND]), t->tcm_handle>>16);
234 fprintf(fp, "dev %s ", ll_index_to_name(t->tcm_ifindex));
236 fprintf(fp, "root ");
239 fprintf(fp, "parent %s ", abuf);
242 fprintf(fp, "refcnt %d ", t->tcm_info);
253 q->print_qopt(q, fp, tb[TCA_OPTIONS]);
255 fprintf(fp, "[cannot parse qdisc parameters]");
257 fprintf(fp, "\n")
    [all...]
  /external/libsepol/src/
policydb.c     [all...]
  /external/blktrace/btt/
plat.c 26 FILE *fp; member in struct:plat_info
43 if ((pp->fp = my_fopen(oname, "w")) == NULL) {
47 add_file(pp->fp, oname);
61 fprintf(pp->fp, "%lf %lf\n",
82 fprintf(pp->fp, "%lf %lf\n",
misc.c 118 void add_file(FILE *fp, char *oname)
122 fip->ofp = fp;
157 FILE *fp; local
160 fp = fopen(path, mode);
161 } while (fp == NULL && handle_open_failure());
163 return fp;
  /external/chromium_org/mojo/common/
data_pipe_utils.cc 57 size_t CopyToFileHelper(FILE* fp, const void* buffer, uint32_t num_bytes) {
58 return fwrite(buffer, 1, num_bytes, fp);
75 base::ScopedFILE fp(base::OpenFile(destination, "wb"));
76 if (!fp)
79 source.Pass(), base::Bind(&CopyToFileHelper, fp.get()));
  /external/chromium_org/third_party/icu/source/i18n/
udateintervalformat.cpp 87 FieldPosition fp; local
89 fp.setField(position->field);
93 ((const DateIntervalFormat*)formatter)->format( &interval, res, fp, *status );
98 position->beginIndex = fp.getBeginIndex();
99 position->endIndex = fp.getEndIndex();
  /external/icu/icu4c/source/i18n/
udateintervalformat.cpp 87 FieldPosition fp; local
89 fp.setField(position->field);
93 ((const DateIntervalFormat*)formatter)->format( &interval, res, fp, *status );
98 position->beginIndex = fp.getBeginIndex();
99 position->endIndex = fp.getEndIndex();
  /external/oprofile/pp/
opgprof.cpp 44 void op_write_vma(FILE * fp, op_bfd const & abfd, bfd_vma vma)
50 op_write_u32(fp, vma);
53 op_write_u64(fp, vma);
108 void output_cg(FILE * fp, op_bfd const & abfd, profile_t const & cg_db)
122 op_write_u8(fp, GMON_TAG_CG_ARC);
123 op_write_vma(fp, abfd, abfd.offset_to_pc(from + offset));
124 op_write_vma(fp, abfd, abfd.offset_to_pc(to + offset));
131 op_write_u32(fp, p_it.first.count());
171 FILE * fp = op_open_file(gmon_filename.c_str(), "w"); local
173 op_write_file(fp, &hdr, sizeof(gmon_hdr))
    [all...]
  /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)
869 int (*fp)(int) = [](int i) { return i; }; member in struct:inclass_lambdas_within_nested_classes::ns1::X1
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_test_conv.c 50 write_tsv_header(FILE *fp)
52 fprintf(fp,
58 fflush(fp);
63 write_tsv_row(FILE *fp,
69 fprintf(fp, "%s\t", success ? "pass" : "fail");
71 fprintf(fp, "%.1f\t", cycles / MAX2(src_type.length, dst_type.length));
73 dump_type(fp, src_type);
74 fprintf(fp, "\t");
76 dump_type(fp, dst_type);
77 fprintf(fp, "\n")
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_conv.c 50 write_tsv_header(FILE *fp)
52 fprintf(fp,
58 fflush(fp);
63 write_tsv_row(FILE *fp,
69 fprintf(fp, "%s\t", success ? "pass" : "fail");
71 fprintf(fp, "%.1f\t", cycles / MAX2(src_type.length, dst_type.length));
73 dump_type(fp, src_type);
74 fprintf(fp, "\t");
76 dump_type(fp, dst_type);
77 fprintf(fp, "\n")
    [all...]
  /external/lldb/utils/test/
ras.py 140 fp = open(path)
142 msg = MIMEText(fp.read(), _subtype=subtype)
143 fp.close()
145 fp = open(path, 'rb')
146 msg = MIMEImage(fp.read(), _subtype=subtype)
147 fp.close()
149 fp = open(path, 'rb')
150 msg = MIMEAudio(fp.read(), _subtype=subtype)
151 fp.close()
153 fp = open(path, 'rb'
    [all...]
  /external/iproute2/misc/
rtacct.c 133 void format_rate(FILE *fp, double rate)
139 fprintf(fp, " %-10s", temp);
142 fprintf(fp, " %-10s", temp);
144 fprintf(fp, " %-10u", (unsigned)rate);
147 void format_count(FILE *fp, unsigned long long val)
150 fprintf(fp, " %10lluM", val/(1024*1024));
152 fprintf(fp, " %10lluK", val/1024);
154 fprintf(fp, " %10llu", val);
157 void dump_abs_db(FILE *fp)
163 fprintf(fp, "#%s\n", kern_db->signature)
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
vfwscanf.c 102 __vfwscanf(FILE * __restrict fp, const wchar_t * __restrict fmt, __va_list ap)
112 int nread; /* number of characters consumed from fp */
131 _SET_ORIENTATION(fp, 1);
144 while ((c = __fgetwc_unlock(fp)) != WEOF &&
148 __ungetwc(c, fp);
163 if ((wi = __fgetwc_unlock(fp)) == WEOF)
166 __ungetwc(wi, fp);
338 while ((wi = __fgetwc_unlock(fp)) != WEOF &&
343 __ungetwc(wi, fp);
360 (wi = __fgetwc_unlock(fp)) != WEOF)
    [all...]
  /external/chromium_org/net/disk_cache/
cache_util_unittest.cc 24 FILE *fp = base::OpenFile(file1_, "w"); local
25 ASSERT_TRUE(fp != NULL);
26 base::CloseFile(fp);
27 fp = base::OpenFile(file2_, "w");
28 ASSERT_TRUE(fp != NULL);
29 base::CloseFile(fp);
31 fp = base::OpenFile(file3_, "w");
32 ASSERT_TRUE(fp != NULL);
33 base::CloseFile(fp);
  /external/chromium_org/v8/test/cctest/
trace-extension.cc 65 Address fp = *reinterpret_cast<Address*>(*args[0]); local
69 Address fp = reinterpret_cast<Address>(high_bits | low_bits); local
73 printf("Trace: %p\n", fp);
74 return fp;
88 void TraceExtension::DoTrace(Address fp) {
90 regs.fp = fp;
105 static void DoTraceHideCEntryFPAddress(Address fp) {
110 i::TraceExtension::DoTrace(fp);
  /external/iproute2/ip/
xfrm.h 61 #define XFRM_FLAG_PRINT(fp, flags, f, s) \
65 fprintf(fp, s "%s", (flags ? " " : "")); \
134 FILE *fp, const char *prefix, const char *title);
135 void xfrm_stats_print(struct xfrm_stats *s, FILE *fp, const char *prefix);
138 FILE *fp, const char *prefix);
140 FILE *fp, const char *prefix);
142 FILE *fp, const char *prefix);
144 struct rtattr *tb[], FILE *fp, const char *prefix,
147 struct rtattr *tb[], FILE *fp, const char *prefix,
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
cpumap.c 179 size_t cpu_map__fprintf(struct cpu_map *map, FILE *fp)
182 size_t printed = fprintf(fp, "%d cpu%s: ",
185 printed += fprintf(fp, "%s%d", i ? ", " : "", map->map[i]);
187 return printed + fprintf(fp, "\n");
209 FILE *fp; local
227 fp = fopen(path, "r");
228 if (!fp)
230 ret = fscanf(fp, "%d", &cpu);
231 fclose(fp);
272 FILE *fp; local
    [all...]
  /external/chromium_org/third_party/mesa/src/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/chromium_org/v8/test/mjsunit/regress/
regress-3462.js 18 var fp = f.prototype;
23 assertEquals(fp, n.prototype);
24 assertEquals(fp, f.prototype);
  /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...]

Completed in 1600 milliseconds

<<11121314151617181920>>