HomeSort by relevance Sort by last modified time
    Searched defs:st (Results 101 - 125 of 1114) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/cblas/src/
cblas_ctpmv.c 31 float *st=0,*x=(float *)X; local
101 st = x + n;
107 while (x != st);
144 while (x != st);
cblas_ctpsv.c 31 float *st=0, *x=(float*)X; local
103 st=x+n;
111 while (x != st);
149 while (x != st);
cblas_ctrmv.c 34 float *st=0,*x=(float *)X; local
104 st = x + n;
110 while (x != st);
147 while (x != st);
cblas_ctrsv.c 33 float *st=0,*x=(float *)X; local
104 st=x+n;
111 while (x != st);
148 while (x != st);
cblas_zgerc.c 27 double *y=(double *)Y, *yy=(double *)Y, *ty, *st; local
50 st= y+n;
54 st = y-2;
64 while (y != st);
cblas_zher.c 31 double *x=(double *)X, *xx=(double *)X, *tx, *st; local
78 st= x+n;
82 st = x-2;
92 while (x != st);
cblas_zhpr.c 30 double *x=(double *)X, *xx=(double *)X, *tx, *st; local
77 st= x+n;
81 st = x-2;
91 while (x != st);
cblas_ztbmv.c 34 double *st=0, *x=(double *)X; local
105 st = x + n;
111 while (x != st);
150 while (x != st);
cblas_ztbsv.c 34 double *st=0,*x=(double *)X; local
107 st=x+n;
115 while (x != st);
154 while (x != st);
cblas_ztpmv.c 31 double *st=0,*x=(double *)X; local
101 st = x + n;
107 while (x != st);
144 while (x != st);
cblas_ztpsv.c 31 double *st=0, *x=(double*)X; local
103 st=x+n;
111 while (x != st);
149 while (x != st);
cblas_ztrmv.c 34 double *st=0,*x=(double *)X; local
105 st = x + n;
111 while (x != st);
148 while (x != st);
cblas_ztrsv.c 33 double *st=0,*x=(double *)X; local
104 st=x+n;
111 while (x != st);
148 while (x != st);
  /external/clang/test/Analysis/diagnostics/
undef-value-param.c 58 struct WithFields st; local
59 st.f1 = 0; // expected-note {{Null pointer value stored to 'st.f1'}}
60 initStruct(x, &st); //expected-note {{Calling 'initStruct'}}
62 return (*st.f1); //expected-warning {{Dereference of null pointer}}
    [all...]
  /external/clang/test/Analysis/
unix-api.c 47 } st = {0}; local
48 fd = open(path, O_RDONLY, st); // expected-warning{{Third argument to 'open' is not an integer}}
57 } st = {0}; local
58 fd = open(path, O_RDONLY, st.val); // no-warning
  /external/e2fsprogs/lib/blkid/
save.c 65 struct stat st; local
79 if (((ret = stat(filename, &st)) < 0 && errno != ENOENT) ||
93 if (ret == 0 && S_ISREG(st.st_mode)) {
  /external/google-breakpad/src/common/android/testing/
mkdtemp.h 77 struct stat st; local
80 ret = stat(path, &st);
84 if (!S_ISDIR(st.st_mode)) {
  /external/iproute2/tc/
q_codel.c 177 struct tc_codel_xstats _st, *st; local
183 st = RTA_DATA(xstats);
184 if (RTA_PAYLOAD(xstats) < sizeof(*st)) {
186 memcpy(&_st, st, RTA_PAYLOAD(xstats));
187 st = &_st;
191 st->count, st->lastcount, sprint_time(st->ldelay, b1));
192 if (st->dropping)
194 if (st->drop_next < 0
    [all...]
q_fq_codel.c 204 struct tc_fq_codel_xstats _st, *st; local
210 st = RTA_DATA(xstats);
211 if (RTA_PAYLOAD(xstats) < sizeof(*st)) {
213 memcpy(&_st, st, RTA_PAYLOAD(xstats));
214 st = &_st;
216 if (st->type == TCA_FQ_CODEL_XSTATS_QDISC) {
218 st->qdisc_stats.maxpacket,
219 st->qdisc_stats.drop_overlimit,
220 st->qdisc_stats.new_flow_count,
221 st->qdisc_stats.ecn_mark)
    [all...]
q_hhf.c 178 struct tc_hhf_xstats *st; local
183 if (RTA_PAYLOAD(xstats) < sizeof(*st))
186 st = RTA_DATA(xstats);
189 st->drop_overlimit, st->hh_overlimit,
190 st->hh_tot_count, st->hh_cur_count);
q_sfb.c 175 struct tc_sfb_xstats *st; local
180 if (RTA_PAYLOAD(xstats) < sizeof(*st))
183 st = RTA_DATA(xstats);
187 st->earlydrop, st->penaltydrop, st->bucketdrop, st->queuedrop, st->childdrop,
188 st->marked,
189 st->maxqlen, (double)st->maxprob / SFB_MAX_PROB
    [all...]
q_sfq.c 259 struct tc_sfq_xstats *st; local
263 if (RTA_PAYLOAD(xstats) < sizeof(*st))
265 st = RTA_DATA(xstats);
267 fprintf(f, " allot %d ", st->allot);
  /external/ipsec-tools/src/racoon/
misc.c 148 struct stat st; local
150 if (stat(path, &st) != 0)
153 return st.st_size;
  /external/llvm/lib/Target/ARM/
Thumb1InstrInfo.cpp 46 const ARMSubtarget &st = MF.getSubtarget<ARMSubtarget>(); local
51 if (st.hasV6Ops() || ARM::hGPRRegClass.contains(SrcReg)
  /external/mesa3d/src/gallium/state_trackers/dri/common/
dri_context.h 59 struct st_context_iface *st; member in struct:dri_context

Completed in 361 milliseconds

1 2 3 45 6 7 8 91011>>