HomeSort by relevance Sort by last modified time
    Searched defs:fp (Results 151 - 175 of 757) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/clang/test/Sema/
overloadable.c 14 float *fp = f(fv); local
25 float *fp = accept_funcptr(f1); local
36 float *fp = accept_struct(y); local
  /external/dropbear/
cli-kex.c 117 char* fp = NULL; local
121 fp = sign_key_fingerprint(keyblob, keybloblen);
125 fp);
126 m_free(fp);
131 fp);
132 m_free(fp);
compat.c 236 register FILE *fp; local
246 if ((fp = fopen("/etc/shells", "rc")) == NULL)
248 if (fstat(fileno(fp), &statb) == -1) {
249 (void)fclose(fp);
253 (void)fclose(fp);
258 (void)fclose(fp);
266 while (fgets(cp, flen - (cp - strings), fp) != NULL) {
277 (void)fclose(fp);
svr-authpubkey.c 60 char* fp = NULL; local
103 fp = sign_key_fingerprint(keyblob, keybloblen);
108 ses.authstate.printableuser, fp, svr_ses.addrstring);
113 ses.authstate.printableuser, fp, svr_ses.addrstring);
116 m_free(fp);
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
lmpar.h 19 Scalar fp; local
62 fp = dxnorm - delta;
63 if (fp <= Scalar(0.1) * delta) {
86 parl = fp / delta / temp / temp;
119 temp = fp;
120 fp = dxnorm - delta;
125 if (abs(fp) <= Scalar(0.1) * delta || (parl == 0. && fp <= temp && temp < 0.) || iter == 10)
140 parc = fp / delta / temp / temp;
143 if (fp > 0.
175 Scalar fp; local
    [all...]
  /external/elfutils/libelf/
elf_getdata.c 159 xfct_t fp; local
170 fp = __elf_xfctstom[version - 1][__libelf_version - 1][eclass - 1][type];
172 fp = __elf_xfctstom[0][0][eclass - 1][type];
175 fp (scn->data_base, scn->rawdata_base, size, 0);
  /external/gtest/test/
gtest-filepath_test.cc 616 FilePath fp; local
617 EXPECT_STREQ("", fp.c_str());
621 const FilePath fp("spicy");
622 EXPECT_STREQ("spicy", fp.c_str());
624 const FilePath fp_copy(fp);
629 const FilePath fp(String("cider"));
630 EXPECT_STREQ("cider", fp.c_str());
  /external/iproute2/ip/
ipaddrlabel.c 59 FILE *fp = (FILE*)arg; local
75 fprintf(fp, "Deleted ");
78 fprintf(fp, "prefix %s/%u ",
87 fprintf(fp, "dev %s ", ll_index_to_name(ifal->ifal_index));
92 fprintf(fp, "label %d ", label);
95 fprintf(fp, "\n");
96 fflush(fp);
ipmroute.c 56 FILE *fp = fopen("/proc/net/ip_mr_vif", "r"); local
58 if (!fp)
61 if (!fgets(buf, sizeof(buf), fp)) {
62 fclose(fp);
65 while (fgets(buf, sizeof(buf), fp)) {
77 fclose(fp);
83 FILE *fp = fopen("/proc/net/ip_mr_cache", "r"); local
85 if (!fp)
88 if (!fgets(buf, sizeof(buf), fp)) {
89 fclose(fp);
    [all...]
  /external/iproute2/misc/
lnstat.h 31 FILE *fp; member in struct:lnstat_file
  /external/iproute2/tc/
tc_class.c 154 FILE *fp = (FILE*)arg; local
185 fprintf(fp, "deleted ");
194 fprintf(fp, "class %s %s ", rta_getattr_str(tb[TCA_KIND]), abuf);
197 fprintf(fp, "dev %s ", ll_index_to_name(t->tcm_ifindex));
200 fprintf(fp, "root ");
206 fprintf(fp, "parent %s ", abuf);
209 fprintf(fp, "leaf %x: ", t->tcm_info>>16);
213 q->print_copt(q, fp, tb[TCA_OPTIONS]);
215 fprintf(fp, "[cannot parse class parameters]");
217 fprintf(fp, "\n")
    [all...]
tc_core.c 186 FILE *fp; local
191 fp = fopen("/proc/net/psched", "r");
192 if (fp == NULL)
195 if (fscanf(fp, "%08x%08x%08x", &t2us, &us2t, &clock_res) != 3) {
196 fclose(fp);
199 fclose(fp);
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/ipsec-tools/src/racoon/
backupsa.c 101 FILE *fp; local
179 (fp = fopen(lcconf->pathinfo[LC_PATHTYPE_BACKUPSA], "a")) == NULL) {
185 fprintf(fp, "%s\n", buf);
186 fclose(fp);
199 FILE *fp; local
211 fp = fopen(lcconf->pathinfo[LC_PATHTYPE_BACKUPSA], "r");
213 fp = NULL;
214 if (fp == NULL) {
223 for(line = 1; fgets(buf, sizeof(buf), fp) != NULL; line++) {
325 fclose(fp);
341 FILE *fp; local
    [all...]
localconf.c 179 FILE *fp; local
187 fp = fopen(lcconf->pathinfo[LC_PATHTYPE_PSK], "r");
189 fp = NULL;
190 if (fp == NULL) {
197 while (fgets(buf, sizeof(buf), fp) != NULL) {
246 fclose(fp);
  /external/libppp/src/
auth.c 164 FILE *fp; local
169 fp = OpenSecret(SECRETFILE);
170 if (fp != NULL) {
173 while (fgets(buff, sizeof buff, fp)) {
184 CloseSecret(fp);
196 rewind(fp);
200 CloseSecret(fp);
209 FILE *fp; local
230 fp = OpenSecret(SECRETFILE);
231 if (fp != NULL)
292 FILE *fp; local
343 FILE *fp; local
    [all...]
  /external/libsepol/src/
genusers.c 37 FILE *fp; local
46 fp = fopen(path, "r");
47 if (fp == NULL)
56 while(fgets(buffer, 255, fp) != NULL) {
58 __fsetlocking(fp, FSETLOCKING_BYCALLER);
59 while ((nread = getline(&buffer, &len, fp)) > 0) {
98 fclose(fp);
108 fclose(fp);
121 fclose(fp);
177 fclose(fp);
    [all...]
  /external/linux-tools-perf/util/
cgroup.c 14 FILE *fp; local
19 fp = fopen("/proc/mounts", "r");
20 if (!fp)
28 while (fscanf(fp, "%*s %"STR(MAX_PATH)"s %"STR(MAX_PATH)"s %"
47 fclose(fp);
debugfs.c 47 FILE *fp; local
63 fp = fopen("/proc/mounts", "r");
64 if (fp == NULL)
67 while (fscanf(fp, "%*s %"
74 fclose(fp);
strlist.c 76 FILE *fp = fopen(filename, "r"); local
78 if (fp == NULL)
81 while (fgets(entry, sizeof(entry), fp) != NULL) {
95 fclose(fp);
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_main.c 47 dump_type(FILE *fp,
50 fprintf(fp, "%s%s%u%sx%u",
284 dump_vec(FILE *fp, struct lp_type type, const void *src)
289 fprintf(fp, " ");
303 fprintf(fp, "%f", value);
331 fprintf(fp, format, value);
358 fprintf(fp, format, value);
368 FILE *fp = NULL; local
380 fp = fopen(argv[++i], "wt");
396 if(fp) {
    [all...]
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_fragprog.c 37 struct nv30_fragprog *fp = nv30->fragprog.program; local
43 if (unlikely(!fp->buffer)) {
44 fp->buffer = pipe_buffer_create(pipe->screen, 0, 0, fp->insn_len * 4);
47 map = pipe_buffer_map(pipe, fp->buffer, PIPE_TRANSFER_WRITE, &transfer);
49 memcpy(map, fp->insn, fp->insn_len * 4);
51 for (i = 0; i < fp->insn_len; i++)
52 *map++ = (fp->insn[i] >> 16) | (fp->insn[i] << 16)
65 struct nv30_fragprog *fp = nv30->fragprog.program; local
134 struct nv30_fragprog *fp = CALLOC_STRUCT(nv30_fragprog); local
146 struct nv30_fragprog *fp = hwcso; local
    [all...]
nv30_vertprog.c 58 struct nv30_fragprog *fp = nv30->fragprog.program; local
64 if (memcmp(vp->texcoord, fp->texcoord, sizeof(vp->texcoord))) {
67 memcpy(vp->texcoord, fp->texcoord, sizeof(vp->texcoord));
212 PUSH_DATA (push, vp->or | fp->vp_or);
  /external/mesa3d/src/mesa/swrast/
s_fragprog.c 43 struct gl_fragment_program *fp = ctx->FragmentProgram._Current; local
44 return fp && !(fp == ctx->FragmentProgram._TexEnvProgram
45 && fp->Base.NumInstructions == 0);
  /external/openssh/
auth2-hostbased.c 147 char *fp; local
199 fp = key_fingerprint(key->cert->signature_key,
203 key_type(key->cert->signature_key), fp,
206 fp = key_fingerprint(key, SSH_FP_MD5, SSH_FP_HEX);
208 key_type(key), fp, cuser, lookup);
210 xfree(fp);

Completed in 478 milliseconds

1 2 3 4 5 67 8 91011>>