HomeSort by relevance Sort by last modified time
    Searched refs:fp (Results 351 - 375 of 2124) sorted by null

<<11121314151617181920>>

  /hardware/intel/img/psb_video/fw/topazsc/
topazsc_bin.c 132 FILE *fp = NULL; local
170 fp = fopen(FW_FILE_NAME, "w");
172 if (NULL == fp)
182 fwrite(&(topaz_fw_table[iter].header), sizeof(topaz_fw_table[iter].header), 1, fp);
186 fwrite(topaz_fw_table[iter].fw_text, 1, size, fp);
190 fwrite(topaz_fw_table[iter].fw_data, 1, size, fp);
196 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/v8/src/
snapshot-common.cc 23 FILE* fp = OS::FOpen(name.start(), "r"); local
24 CHECK_NE(NULL, fp);
32 CHECK_EQ(1, fscanf(fp, "new %d\n", &new_size));
33 CHECK_EQ(1, fscanf(fp, "pointer %d\n", &pointer_size));
34 CHECK_EQ(1, fscanf(fp, "data %d\n", &data_size));
35 CHECK_EQ(1, fscanf(fp, "code %d\n", &code_size));
36 CHECK_EQ(1, fscanf(fp, "map %d\n", &map_size));
37 CHECK_EQ(1, fscanf(fp, "cell %d\n", &cell_size));
38 CHECK_EQ(1, fscanf(fp, "property cell %d\n", &property_cell_size));
42 fclose(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...]
  /external/srec/srec/include/
srec_context.h 190 int FST_DumpGraph(srec_context* fst, PFile* fp);
191 int FST_DumpWordMap(PFile* fp, wordmap* wmap);
192 int FST_DumpReverseWordGraph(srec_context* context, PFile* fp);
205 int FST_LoadWordMap(wordmap** pwmap, int num_words_to_add, PFile* fp);
208 int num_words_to_add, PFile* fp);
212 int FST_DumpContextAsImageV1(srec_context* context, PFile* fp);
214 int FST_DumpContextAsImageV2(srec_context* context, PFile* fp);
215 int FST_LoadContextFromImage(srec_context** pcontext, PFile* fp);
237 ESR_ReturnCode deserializeWordMapV2(wordmap **pwordmap, PFile* fp);
238 ESR_ReturnCode serializeWordMapV2(wordmap *wordmap, PFile* fp);
    [all...]
  /system/core/toolbox/
netstat.c 92 FILE *fp = fopen(filename, "r"); local
93 if (fp == NULL) {
97 fgets(buf, BUFSIZ, fp);
98 while (fgets(buf, BUFSIZ, fp)){
115 fclose(fp);
119 FILE *fp = fopen(filename, "r"); local
120 if (fp == NULL) {
124 fgets(buf, BUFSIZ, fp);
125 while (fgets(buf, BUFSIZ, fp)){
143 fclose(fp);
    [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",
  /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...]
  /hardware/qcom/display/msm8960/liboverlay/
overlayUtils.cpp 43 IOFile(const char* s, const char* mode) : fp(0) {
44 fp = ::fopen(s, mode);
45 if(!fp) {
51 if(fp) {
52 return ::fread(&r, sizeof(T), elem, fp);
57 if(fp) {
58 return ::fprintf(fp, s, val);
62 bool valid() const { return fp != 0; }
64 if(fp) ::fclose(fp);
67 FILE* fp; member in struct:__anon40806::IOFile
    [all...]
  /hardware/qcom/display/msm8974/liboverlay/
overlayUtils.cpp 43 IOFile(const char* s, const char* mode) : fp(0) {
44 fp = ::fopen(s, mode);
45 if(!fp) {
51 if(fp) {
52 return ::fread(&r, sizeof(T), elem, fp);
57 if(fp) {
58 return ::fprintf(fp, s, val);
62 bool valid() const { return fp != 0; }
64 if(fp) ::fclose(fp);
67 FILE* fp; member in struct:__anon40877::IOFile
    [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...]
  /frameworks/base/rs/java/android/renderscript/
ScriptIntrinsicColorMatrix.java 82 FieldPacker fp = new FieldPacker(16*4); local
83 fp.addMatrix(mMatrix);
84 setVar(0, fp);
121 FieldPacker fp = new FieldPacker(4*4); local
122 fp.addF32(f.x);
123 fp.addF32(f.y);
124 fp.addF32(f.z);
125 fp.addF32(f.w);
126 setVar(1, fp);
144 FieldPacker fp = new FieldPacker(4*4) local
    [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,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
applesingle.py 92 fp = open(path, 'wb')
93 fp.write(self.resourcefork)
94 fp.close()
99 fp = open(path, 'wb')
100 fp.write(self.datafork)
101 fp.close()
103 fp = MacOS.openrf(path, '*wb')
104 fp.write(self.resourcefork)
105 fp.close()
  /system/core/libbacktrace/
map_info.c 71 FILE* fp = popen(cmd, "r"); local
72 if (fp == NULL) {
78 while (fgets(line, sizeof(line), fp) != NULL) {
85 pclose(fp);
135 FILE* fp; local
142 fp = fopen(path, "r");
143 if (fp) {
144 while(fgets(line, sizeof(line), fp)) {
151 fclose(fp);
  /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...]

Completed in 933 milliseconds

<<11121314151617181920>>