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

<<11121314151617181920>>

  /external/e2fsprogs/intl/
localcharset.c 118 FILE *fp; local
138 if (file_name == NULL || (fp = fopen (file_name, "r")) == NULL)
153 c = getc (fp);
162 c = getc (fp);
168 ungetc (c, fp);
169 if (fscanf (fp, "%50s %50s", buf1, buf2) < 2)
192 fclose (fp);
  /external/e2fsprogs/misc/
chattr.c 115 const struct flags_char *fp; local
117 for (fp = flags_array; fp->flag != 0; fp++) {
118 if (fp->optchar == c)
119 return fp->flag;
  /external/google-breakpad/src/processor/
stackwalker_selftest.cc 250 "mov %%fp, %0"
256 // GetFP returns the current value of the %fp register. Because it's
257 // implemented as a function, %fp itself contains GetFP's frame pointer
258 // and not the caller's frame pointer. Dereference %fp to obtain the
265 uint32_t fp; local
267 "ld [%%fp+56], %0"
268 : "=r" (fp)
270 return fp;
367 printf(" sp = 0x%08x fp = 0x%08x\n",
  /external/google-breakpad/src/tools/linux/symupload/
sym_upload.cc 86 FILE* fp = fopen(file.c_str(), "r"); local
87 if (fp) {
89 if (fgets(buffer, sizeof(buffer), fp)) {
94 fclose(fp);
103 fclose(fp);
  /external/iproute2/bridge/
fdb.c 64 FILE *fp = arg; local
92 fprintf(fp, "Deleted ");
96 fprintf(fp, "%s ",
104 fprintf(fp, "dev %s ", ll_index_to_name(r->ndm_ifindex));
113 fprintf(fp, "dst %s ",
122 fprintf(fp, "vlan %hu ", vid);
126 fprintf(fp, "port %d ", ntohs(rta_getattr_u16(tb[NDA_PORT])));
128 fprintf(fp, "vni %d ", rta_getattr_u32(tb[NDA_VNI]));
137 fprintf(fp, "via %s ", ifname);
139 fprintf(fp, "via ifindex %u ", ifindex)
    [all...]
mdb.c 88 FILE *fp = arg; local
115 br_print_mdb_entry(fp, r->ifindex, i, n);
121 fprintf(fp, "router ports on %s: ",
123 br_print_router_ports(fp, tb[MDBA_ROUTER]);
131 fprintf(fp, "Deleted ");
132 fprintf(fp, "router port dev %s master %s\n",
138 fflush(fp);
  /external/iproute2/genl/
ctrl.c 115 static void print_ctrl_cmd_flags(FILE *fp, __u32 fl)
117 fprintf(fp, "\n\t\tCapabilities (0x%x):\n ", fl);
119 fprintf(fp, "\n");
122 fprintf(fp, "\t\t ");
125 fprintf(fp, " requires admin permission;");
127 fprintf(fp, " can doit;");
129 fprintf(fp, " can dumpit;");
131 fprintf(fp, " has policy");
133 fprintf(fp, "\n");
136 static int print_ctrl_cmds(FILE *fp, struct rtattr *arg, __u32 ctrl_ver
188 FILE *fp = (FILE *) arg; local
    [all...]
  /external/iproute2/ip/
ip6tunnel.c 328 FILE *fp = fopen("/proc/net/dev", "r"); local
329 if (fp == NULL) {
335 if (!fgets(buf, sizeof(buf), fp) ||
336 !fgets(buf, sizeof(buf), fp)) {
341 while (fgets(buf, sizeof(buf), fp) != NULL) {
384 fclose(fp);
ipmaddr.c 89 FILE *fp = fopen("/proc/net/dev_mcast", "r"); local
91 if (!fp)
94 while (fgets(buf, sizeof(buf), fp)) {
120 fclose(fp);
127 FILE *fp = fopen("/proc/net/igmp", "r"); local
129 if (!fp)
132 if (!fgets(buf, sizeof(buf), fp)) {
133 fclose(fp);
141 while (fgets(buf, sizeof(buf), fp)) {
158 fclose(fp);
165 FILE *fp = fopen("\/proc\/net\/igmp6", "r"); local
    [all...]
iptunnel.c 391 FILE *fp = fopen("/proc/net/dev", "r"); local
393 if (fp == NULL) {
399 if (!fgets(buf, sizeof(buf), fp) ||
400 !fgets(buf, sizeof(buf), fp)) {
405 while (fgets(buf, sizeof(buf), fp) != NULL) {
446 fclose(fp);
xfrm_monitor.c 49 FILE *fp = (FILE*)arg; local
69 fprintf(fp, "acquire ");
71 fprintf(fp, "proto %s ", strxf_xfrmproto(xacq->id.proto));
74 fprintf(fp, "spi 0x%08x", spi);
76 fprintf(fp, "(%u)", spi);
77 fprintf(fp, " ");
79 fprintf(fp, "%s", _SL_);
81 xfrm_selector_print(&xacq->sel, family, fp, " sel ");
83 xfrm_policy_info_print(&xacq->policy, tb, fp, " ", " policy ");
86 fprintf(fp, " seq 0x%08u ", xacq->seq)
110 FILE *fp = (FILE*)arg; local
141 FILE *fp = (FILE*)arg; local
178 FILE *fp = (FILE*)arg; local
213 FILE *fp = (FILE*)arg; local
244 FILE *fp = (FILE*)arg; local
275 FILE *fp = (FILE*)arg; local
296 FILE *fp = (FILE*)arg; local
413 FILE *fp; local
    [all...]
  /external/iproute2/tc/
tc_filter.c 198 FILE *fp = (FILE*)arg; local
224 fprintf(fp, "deleted ");
226 fprintf(fp, "filter ");
228 fprintf(fp, "dev %s ", ll_index_to_name(t->tcm_ifindex));
232 fprintf(fp, "root ");
234 fprintf(fp, "ingress ");
236 fprintf(fp, "egress ");
239 fprintf(fp, "parent %s ", abuf);
249 fprintf(fp, "protocol %s ",
255 fprintf(fp, "pref %u ", prio)
    [all...]
  /external/ipsec-tools/src/racoon/
session.c 124 FILE *fp; local
165 fp = fopen(pid_file, "w");
166 if (fp) {
167 if (fchmod(fileno(fp),
170 fclose(fp);
173 fprintf(fp, "%ld\n", (long)racoon_pid);
174 fclose(fp);
  /external/libcxx/test/std/experimental/utilities/tuple/tuple.apply/
types.pass.cpp 110 auto fp = &f_void_0; local
111 ex::apply(fp, t);
146 void (*fp)(int) = f_void_1;
147 ex::apply(fp, t);
182 auto fp = &f_void_2; local
183 ex::apply(fp, t);
218 auto fp = &f_void_3; local
219 ex::apply(fp, t);
256 auto fp = &f_int_0; local
257 assert(1 == ex::apply(fp, t))
328 auto fp = &f_int_2; local
364 auto fp = &f_int_3; local
    [all...]
  /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.inv/
invoke.pass.cpp 44 int (*fp)() = f_int_0;
45 std::function<int ()> r1(fp);
82 void (*fp)() = f_void_0;
83 std::function<void ()> r1(fp);
130 void (*fp)(int) = f_void_1;
131 std::function<void (int)> r1(fp);
148 void (A_void_1::*fp)() = &A_void_1::mem1;
149 std::function<void (A_void_1)> r1(fp);
155 std::function<void (A_void_1*)> r2 = fp;
162 void (A_void_1::*fp)() const = &A_void_1::mem2
241 int A_int_1::*fp = &A_int_1::data_; member in class:A_int_1
    [all...]
  /external/libedit/src/
eln.c 233 FILE *fp = va_arg(ap, FILE *); local
234 ret = el_wset(el, op, what, fp);
  /external/libmicrohttpd/doc/examples/
tlsauthentication.c 68 FILE *fp; local
70 fp = fopen (filename, "rb");
71 if (fp)
75 if ((0 != fseek (fp, 0, SEEK_END)) || (-1 == (size = ftell (fp))))
78 fclose (fp);
89 FILE *fp; local
97 fp = fopen (filename, "rb");
98 if (!fp)
104 fclose (fp);
    [all...]
  /external/libopus/celt/
mdct.c 190 const kiss_fft_scalar * OPUS_RESTRICT fp = f2; local
198 yr = S_MUL(fp[1],t[(N4-i)<<shift]) + S_MUL(fp[0],t[i<<shift]);
199 yi = S_MUL(fp[0],t[(N4-i)<<shift]) - S_MUL(fp[1],t[i<<shift]);
203 fp += 2;
  /external/libpcap/
savefile.c 172 FILE *fp; local
177 fp = stdin;
183 SET_BINMODE(fp);
188 fp = fopen(fname, "r");
190 fp = fopen(fname, "rb");
192 if (fp == NULL) {
198 p = pcap_fopen_offline_with_tstamp_precision(fp, precision, errbuf);
200 if (fp != stdin)
201 fclose(fp);
256 pcap_fopen_offline_with_tstamp_precision(FILE *fp, u_int precision
    [all...]
  /external/libselinux/src/
label_android_property.c 144 FILE *fp; local
162 if ((fp = fopen(path, "r")) == NULL)
165 if (fstat(fileno(fp), &sb) < 0)
182 while (fgets(line_buf, sizeof(line_buf) - 1, fp)
208 rewind(fp);
216 fclose(fp);
  /external/libunwind_llvm/src/
CompactUnwinder.hpp 679 uint64_t fp = registers.getFP(); local
680 // fp points to old fp
681 registers.setFP(addressSpace.get64(fp));
682 // old sp is fp less saved fp and lr
683 registers.setSP(fp + 16);
685 registers.setIP(addressSpace.get64(fp + 8));
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_program.h 48 } fp; member in struct:nvc0_program
  /external/mesa3d/src/glsl/
main.cpp 70 FILE *fp = fopen(file_name, "rb"); local
72 if (!fp) {
76 fseek(fp, 0L, SEEK_END);
77 size = ftell(fp);
78 fseek(fp, 0L, SEEK_SET);
84 1, size - total_read, fp);
101 fclose(fp);
  /external/mesa3d/src/mesa/main/
arbprogram.c 829 const struct gl_fragment_program *fp = ctx->FragmentProgram.Current; local
832 *params = fp->Base.NumNativeAluInstructions;
835 *params = fp->Base.NumAluInstructions;
838 *params = fp->Base.NumTexInstructions;
841 *params = fp->Base.NumNativeTexInstructions;
844 *params = fp->Base.NumTexIndirections;
847 *params = fp->Base.NumNativeTexIndirections;
  /external/mesa3d/src/mesa/state_tracker/
st_atom_pixeltransfer.c 146 struct gl_fragment_program *fp; local
150 fp = (struct gl_fragment_program *)
152 if (!fp)
170 fp->Base.InputsRead = BITFIELD64_BIT(FRAG_ATTRIB_TEX0);
171 fp->Base.OutputsWritten = BITFIELD64_BIT(FRAG_RESULT_COLOR);
172 fp->Base.SamplersUsed = 0x1; /* sampler 0 (bit 0) is used */
248 fp->Base.SamplersUsed |= (1 << 1); /* sampler 1 is used */
266 fp->Base.Instructions = _mesa_alloc_instructions(ic);
267 if (!fp->Base.Instructions) {
274 _mesa_copy_instructions(fp->Base.Instructions, inst, ic)
297 struct gl_fragment_program *fp; local
    [all...]

Completed in 350 milliseconds

<<11121314151617181920>>