HomeSort by relevance Sort by last modified time
    Searched defs:st (Results 126 - 150 of 488) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/iproute2/tc/
q_hfsc.c 122 struct tc_hfsc_stats *st; local
126 if (RTA_PAYLOAD(xstats) < sizeof(*st))
128 st = RTA_DATA(xstats);
130 fprintf(f, " period %u ", st->period);
131 if (st->work != 0)
132 fprintf(f, "work %llu bytes ", (unsigned long long) st->work);
133 if (st->rtwork != 0)
134 fprintf(f, "rtwork %llu bytes ", (unsigned long long) st->rtwork);
135 fprintf(f, "level %u ", st->level);
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/filter/
HydraulicErodeFilter.java 86 float[] st = new float[workSize * workSize]; local
100 st[idx] += stemp * wt[idx];
130 float dsj = st[idx] * dwj / wt[idx];
132 st[idx] -= dsj;
134 st[idx + idxrel[amaxidx]] += dsj;
144 if (st[idx] > smax) {
145 ga[idx] += st[idx] - smax;
146 st[idx] -= st[idx] - smax;
  /external/libvpx/vpx_mem/memory_manager/include/
cavl_if.h 98 L_SC AVL_HANDLE L_(search)(L_(avl) *tree, AVL_KEY k, avl_search_type st); variable
189 L_(avl) *tree, L_(iter) *iter, AVL_KEY k, avl_search_type st); variable
  /external/mesa3d/src/glsl/
glsl_compiler.cpp 79 struct stat st; local
87 if (fstat(fd, & st) == 0) {
88 text = (char *) hieralloc_size(ctx, st.st_size + 1);
92 st.st_size - total_read);
104 } while (total_read < st.st_size);
  /external/openssl/crypto/rand/
rand_unix.c 281 struct stat *st=&randomstats[i]; local
285 if (fstat(fd,st) != 0) { close(fd); continue; }
288 if (randomstats[j].st_ino==st->st_ino &&
289 randomstats[j].st_dev==st->st_dev)
  /external/qemu/block/
cow.c 224 struct stat st; local
255 if (fstat(fd, &st) != 0) {
260 cow_header.mtime = cpu_to_be32(st.st_mtime);
  /external/quake/quake/src/WinQuake/
pr_exec.cpp 365 dstatement_t *st; local
394 st = &pr_statements[s];
395 a = (eval_t *)&pr_globals[st->a];
396 b = (eval_t *)&pr_globals[st->b];
397 c = (eval_t *)&pr_globals[st->c];
406 PR_PrintStatement (st);
408 switch (st->op)
599 s += st->b - 1; // offset the s++
604 s += st->b - 1; // offset the s++
608 s += st->a - 1; // offset the s+
    [all...]
  /external/speex/libspeex/
kiss_fftr.c 35 kiss_fftr_cfg st = NULL; local
48 st = (kiss_fftr_cfg) KISS_FFT_MALLOC (memneeded);
51 st = (kiss_fftr_cfg) mem;
54 if (!st)
57 st->substate = (kiss_fft_cfg) (st + 1); /*just beyond kiss_fftr_state struct */
58 st->tmpbuf = (kiss_fft_cpx *) (((char *) st->substate) + subsize);
59 st->super_twiddles = st->tmpbuf + nfft
    [all...]
  /external/webkit/Source/WebKit/android/plugins/
ANPSystemInterface.cpp 103 struct stat st; local
104 if (stat(gApplicationDataDirIncognito, &st) == 0) {
105 if (!S_ISDIR(st.st_mode)) {
167 struct stat st; local
168 return stat(path, &st) == 0 && S_ISDIR(st.st_mode);
  /external/webkit/Source/WebKit/efl/ewk/
ewk_settings.cpp 146 struct stat st; local
148 if (stat(directory, &st)) {
153 if (!S_ISDIR(st.st_mode)) {
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
os_win32.c 38 SYSTEMTIME st; local
40 GetSystemTime(&st);
41 SystemTimeToFileTime(&st, &ft);
  /external/wpa_supplicant_8/src/utils/
os_win32.c 33 SYSTEMTIME st; local
35 GetSystemTime(&st);
36 SystemTimeToFileTime(&st, &ft);
  /frameworks/base/core/jni/
android_os_FileUtils.cpp 83 struct stat st; local
84 if (stat(file8.string(), &st) != 0) {
91 array[0] = st.st_mode;
94 array[1] = st.st_uid;
97 array[2] = st.st_gid;
android_util_XmlBlock.cpp 82 ResXMLParser* st = new ResXMLParser(*osb); local
83 if (st == NULL) {
88 st->restart();
90 return (jint)st;
96 ResXMLParser* st = (ResXMLParser*)token; local
97 if (st == NULL) {
102 jint code = (jint)st->next();
128 ResXMLParser* st = (ResXMLParser*)token; local
129 if (st == NULL) {
133 return (jint)st->getElementNamespaceID()
139 ResXMLParser* st = (ResXMLParser*)token; local
150 ResXMLParser* st = (ResXMLParser*)token; local
161 ResXMLParser* st = (ResXMLParser*)token; local
173 ResXMLParser* st = (ResXMLParser*)token; local
185 ResXMLParser* st = (ResXMLParser*)token; local
197 ResXMLParser* st = (ResXMLParser*)token; local
209 ResXMLParser* st = (ResXMLParser*)token; local
221 ResXMLParser* st = (ResXMLParser*)token; local
233 ResXMLParser* st = (ResXMLParser*)token; local
245 ResXMLParser* st = (ResXMLParser*)token; local
258 ResXMLParser* st = (ResXMLParser*)token; local
287 ResXMLParser* st = (ResXMLParser*)token; local
300 ResXMLParser* st = (ResXMLParser*)token; local
313 ResXMLParser* st = (ResXMLParser*)token; local
337 ResXMLParser* st = (ResXMLParser*)token; local
    [all...]
  /frameworks/base/graphics/java/android/graphics/
SurfaceTexture.java 290 SurfaceTexture st = (SurfaceTexture)weakSelf.get(); local
291 if (st == null) {
295 if (st.mEventHandler != null) {
296 Message m = st.mEventHandler.obtainMessage();
297 st.mEventHandler.sendMessage(m);
  /frameworks/base/media/java/android/media/audiofx/
BassBoost.java 233 StringTokenizer st = new StringTokenizer(settings, "=;"); local
234 int tokens = st.countTokens();
235 if (st.countTokens() != 3) {
238 String key = st.nextToken();
244 key = st.nextToken();
248 strength = Short.parseShort(st.nextToken());
Virtualizer.java 235 StringTokenizer st = new StringTokenizer(settings, "=;"); local
236 int tokens = st.countTokens();
237 if (st.countTokens() != 3) {
240 String key = st.nextToken();
246 key = st.nextToken();
250 strength = Short.parseShort(st.nextToken());
  /frameworks/compile/mclinker/lib/Support/
MemoryArea.cpp 67 struct stat st; local
68 int stat_result = ::stat(m_FilePath.native().c_str(), &st);
70 m_FileSize = static_cast<size_t>(st.st_size);
91 struct stat st; local
92 int stat_result = ::stat(m_FilePath.native().c_str(), &st);
94 m_FileSize = static_cast<size_t>(st.st_size);
  /frameworks/native/cmds/dumpstate/
dumpstate.c 116 struct stat st; local
121 } else if (stat(anr_traces_path, &st)) {
136 if (stat(anr_traces_path, &st)) {
  /gdk/samples/quake/jni/
pr_exec.cpp 365 dstatement_t *st; local
394 st = &pr_statements[s];
395 a = (eval_t *)&pr_globals[st->a];
396 b = (eval_t *)&pr_globals[st->b];
397 c = (eval_t *)&pr_globals[st->c];
406 PR_PrintStatement (st);
408 switch (st->op)
599 s += st->b - 1; // offset the s++
604 s += st->b - 1; // offset the s++
608 s += st->a - 1; // offset the s+
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
TestThread.java 59 StackTraceElement[] st = e.getStackTrace(); local
60 for (int i = 0; i < st.length; i++) {
61 errorSB.append(st[i].toString());
  /ndk/sources/host-tools/nawk-20071023/
awkgram.y 71 %type <i> do st
311 st: label
317 BREAK st { if (!inloop) SYNTAX("break illegal outside of loops");
319 | CONTINUE st { if (!inloop) SYNTAX("continue illegal outside of loops");
321 | do {inloop++;} stmt {--inloop;} WHILE '(' pattern ')' st
323 | EXIT pattern st { $$ = stat1(EXIT, $2); }
324 | EXIT st { $$ = stat1(EXIT, NIL); }
329 | NEXT st { if (infunc)
332 | NEXTFILE st { if (infunc)
335 | RETURN pattern st { $$ = stat1(RETURN, $2);
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
tempname.c 209 struct_stat64 st; local
285 if (__lxstat64 (_STAT_VER, tmpl, &st) < 0)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiClassAttributeNode.java 163 IType st = supertypes[i]; local
164 if (mReferenceType.equals(st)) {
  /system/core/adb/
file_sync_service.c 59 struct stat st; local
63 if(lstat(path, &st)) {
68 msg.stat.mode = htoll(st.st_mode);
69 msg.stat.size = htoll(st.st_size);
70 msg.stat.time = htoll(st.st_mtime);
80 struct stat st; local
105 if(lstat(tmp, &st) == 0) {
106 msg.dent.mode = htoll(st.st_mode);
107 msg.dent.size = htoll(st.st_size);
108 msg.dent.time = htoll(st.st_mtime)
    [all...]

Completed in 8833 milliseconds

1 2 3 4 56 7 8 91011>>