HomeSort by relevance Sort by last modified time
    Searched refs:st (Results 401 - 425 of 2989) sorted by null

<<11121314151617181920>>

  /external/python/cpython3/Lib/test/subprocessdata/
fd_status.py 26 st = os.fstat(fd) variable
32 if not stat.S_ISDOOR(st.st_mode):
  /external/python/cpython3/Modules/_ctypes/libffi/src/arc/
arcompact.S 46 st.a fp, [sp, -4] /* fp + 20, fp */
48 st.a r4, [sp, -4] /* fp + 12, ecif.rvalue */
50 st.a r5, [sp, -4] /* fp + 4, fn */
108 st.a r0, [sp, -32]
112 st r4, [sp, 16]
113 st r5, [sp, 20]
114 st r6, [sp, 24]
115 st r7, [sp, 28]
  /external/python/cpython3/Modules/_ctypes/libffi/src/m88k/
obsd.S 59 st %r30, %r31, 4
60 st %r1, %r31, 0
64 st.d %r4, %r31, 8
65 st %r6, %r31, 16
108 st %r2, %r5, 0
113 st.d %r2, %r5, 0
132 st %r30, %r31, 4
133 st %r1, %r31, 0
139 st.d %r2, %r31, (0 * 4)
140 st.d %r4, %r31, (2 * 4
    [all...]
  /external/speex/libspeex/
kiss_fftr.h 35 void kiss_fftr2(kiss_fftr_cfg st,const kiss_fft_scalar *timedata,kiss_fft_scalar *freqdata);
39 void kiss_fftri2(kiss_fftr_cfg st,const kiss_fft_scalar *freqdata, kiss_fft_scalar *timedata);
  /external/toybox/tests/
md5sum.test 23 echo -n "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" > "te st"
26 "te st: OK\nempty: FAILED\n-: OK\nok\n" \
27 "$(printf "d174ab98d277d9f5a5611c2c9f419d9f te st\n12345678901234567890123456789012 empty\nd41d8cd98f00b204e9800998ecf8427e -\n")" ""
28 rm "te st" empty
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
complexityMeasures.m 8 cout=' > st.txt'; %saves to matlab variable 'st'
11 load st.txt
17 index = find(st(1:end,1)==-1);
18 indexnonzero = find(st(1:end,1)>0);
21 functionOrder=max(st(:,2));
26 new(i,st(j,2)) = new(i,st(j,2)) + st(j,1);
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
ProxyOutputStream.java 65 * @param st The start offset
69 public void write(byte[] bts, int st, int end) throws IOException {
70 out.write(bts, st, end);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/test/
register_benchmark_test.cc 79 void BM_extra_args(benchmark::State& st, const char* label) {
80 while (st.KeepRunning()) {
82 st.SetLabel(label);
101 void operator()(benchmark::State& st) {
102 while (st.KeepRunning()) {
118 auto capturing_lam = [=](benchmark::State& st) {
119 while (st.KeepRunning()) {
121 st.SetLabel(std::to_string(x));
  /system/core/libnativebridge/tests/
CodeCacheStatFail_test.cpp 33 struct stat st; local
34 ASSERT_EQ(-1, stat(kCodeCacheStatFail, &st));
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/
white.s 20 fxch %st ( 1 )
21 fxch % st(1)
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/m32r/
parallel-2.d 9 0: 04 a5 24 46 add r4,r5 -> st r4,@r6
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/sparc/
ld_st_fsr.d 11 4: c1 28 c0 00 st %fsr, \[ %g3 \]
  /external/python/cpython3/Modules/_sqlite/
statement.c 59 self->st = NULL;
99 &self->st,
106 (void)sqlite3_finalize(self->st);
107 self->st = NULL;
122 rc = sqlite3_bind_null(self->st, pos);
150 rc = sqlite3_bind_int64(self->st, pos, value);
154 rc = sqlite3_bind_double(self->st, pos, PyFloat_AsDouble(parameter));
165 rc = sqlite3_bind_text(self->st, pos, string, (int)buflen, SQLITE_TRANSIENT);
179 rc = sqlite3_bind_blob(self->st, pos, view.buf, (int)view.len, SQLITE_TRANSIENT);
217 num_params_needed = sqlite3_bind_parameter_count(self->st);
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldThreadTest.java 52 st = new Thread(tg, new SimpleThread(1), "SimpleThread3", 1);
53 assertTrue("Constructed incorrect thread", (st.getThreadGroup() == tg)
54 && st.getName().equals("SimpleThread3"));
55 st.start();
57 st.join();
138 st = new Thread();
139 st.setContextClassLoader(pcl);
140 assertEquals(pcl, st.getContextClassLoader());
142 st.setContextClassLoader(null);
143 assertNull(st.getContextClassLoader())
460 Thread st, ct, spinner; field in class:OldThreadTest
    [all...]
  /frameworks/base/core/java/com/android/internal/policy/
PhoneWindow.java 576 * @param st The panel state to prepare.
581 public final boolean preparePanel(PanelFeatureState st, KeyEvent event) {
587 if (st.isPrepared) {
591 if ((mPreparedPanel != null) && (mPreparedPanel != st)) {
599 st.createdPanelView = cb.onCreatePanelView(st.featureId);
603 (st.featureId == FEATURE_OPTIONS_PANEL || st.featureId == FEATURE_ACTION_BAR);
611 if (st.createdPanelView == null) {
613 if (st.menu == null || st.refreshMenuContent)
690 PanelFeatureState st = getPanelState(FEATURE_OPTIONS_PANEL, false); local
975 PanelFeatureState st = getPanelState(featureId, true); local
1001 PanelFeatureState st = getPanelState(featureId, false); local
1043 PanelFeatureState st = getPanelState(featureId, false); local
1062 final PanelFeatureState st = getPanelState(featureId, false); local
1202 PanelFeatureState st = getPanelState(featureId, true); local
1261 final PanelFeatureState st = getPanelState(FEATURE_OPTIONS_PANEL, false); local
1273 final PanelFeatureState st = getPanelState(FEATURE_OPTIONS_PANEL, false); local
1281 PanelFeatureState st = getPanelState(FEATURE_OPTIONS_PANEL, false); local
1389 final PanelFeatureState st = getPanelState(FEATURE_OPTIONS_PANEL, false); local
1489 DrawableFeatureState st = getDrawableState(featureId, true); local
1504 DrawableFeatureState st = getDrawableState(featureId, true); local
1518 DrawableFeatureState st = getDrawableState(featureId, true); local
1529 DrawableFeatureState st = getDrawableState(featureId, true); local
1537 DrawableFeatureState st = getDrawableState(featureId, true); local
1561 final DrawableFeatureState st = getDrawableState(featureId, false); local
2196 PanelFeatureState st; local
2228 PanelFeatureState st; local
    [all...]
  /external/tensorflow/tensorflow/core/util/sparse/
sparse_tensor_test.cc 172 SparseTensor st(ix, vals, shape, order);
173 Status st_indices_valid = st.IndicesValid();
180 st.Reorder<string>({2, 0, 1});
181 TF_EXPECT_OK(st.IndicesValid());
190 st.Reorder<string>({0, 1, 2});
191 TF_EXPECT_OK(st.IndicesValid());
200 st.Reorder<string>({2, 1, 0});
201 TF_EXPECT_OK(st.IndicesValid());
213 SparseTensor st(ix, vals, shape, order);
214 TF_EXPECT_OK(st.IndicesValid())
    [all...]
  /external/e2fsprogs/lib/blkid/
getsize.c 140 struct stat st; local
151 if (fstat(fd, &st) >= 0 &&
152 (S_ISBLK(st.st_mode) || S_ISCHR(st.st_mode)))
153 part = st.st_rdev & 7;
164 struct stat64 st; local
165 if (fstat64(fd, &st) == 0)
167 struct stat st;
168 if (fstat(fd, &st) == 0)
170 if (S_ISREG(st.st_mode)
    [all...]
  /external/boringssl/src/crypto/poly1305/
poly1305_arm.c 186 struct poly1305_state_st *st = (struct poly1305_state_st *)(state); local
187 fe1305x2 *const r = (fe1305x2 *)(st->data + (15 & (-(int)st->data)));
206 OPENSSL_memcpy(st->key, key + 16, 16);
207 st->buf_used = 0;
212 struct poly1305_state_st *st = (struct poly1305_state_st *)(state); local
213 fe1305x2 *const r = (fe1305x2 *)(st->data + (15 & (-(int)st->data)));
219 if (st->buf_used) {
220 unsigned int todo = 32 - st->buf_used
260 struct poly1305_state_st *st = (struct poly1305_state_st *)(state); local
    [all...]
  /external/llvm/test/MC/X86/
x86-16.s 219 // CHECK: fmul %st(0)
221 fmul %st(0), %st
223 // CHECK: fadd %st(0)
225 fadd %st(0), %st
227 // CHECK: fsub %st(0)
229 fsub %st(0), %st
231 // CHECK: fsubr %st(0
    [all...]
  /external/libxaac/decoder/
ixheaacd_lpc.c 94 ia_usac_lpd_decoder_handle st,
100 st->mode_prev = -2;
102 st->mode_prev = -1;
106 st->pitch_prev[i] = 64;
107 st->gain_prev[i] = 0;
110 st->bpf_active_prev = 0;
146 ia_usac_lpd_decoder_handle st, WORD32 k) {
157 ixheaacd_memset(st->lp_flt_coeff_a_prev, 2 * (ORDER + 1));
158 ixheaacd_memset(st->exc_prev, 1 + (2 * FAC_LENGTH));
159 ixheaacd_memset(st->xcitation_prev, MAX_PITCH + INTER_LP_FIL_ORDER + 1)
    [all...]
  /external/toybox/toys/posix/
cp.c 137 if (S_ISDIR(try->st.st_mode) && try->again) {
143 if (S_ISLNK(try->st.st_mode) && (flags & FLAG_d)) flags |= FLAG_r;
147 if ((TT.top.st_dev == try->st.st_dev && TT.top.st_ino == try->st.st_ino
149 || (!fstatat(cfd, catch, &cst, 0) && cst.st_dev == try->st.st_dev
150 && cst.st_ino == try->st.st_ino))
163 if (S_ISDIR(try->st.st_mode)) {
192 if (S_ISDIR(try->st.st_mode)) {
208 if (!mkdirat(cfd, catch, try->st.st_mode | 0200) || errno == EEXIST)
247 } else if (!S_ISREG(try->st.st_mode
413 struct stat st; local
    [all...]
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/app/
AppCompatDelegateImpl.java 534 PanelFeatureState st = getPanelState(FEATURE_OPTIONS_PANEL, false);
535 if (!mIsDestroyed && (st == null || st.menu == null)) {
    [all...]
  /external/iproute2/tc/
q_fq.c 311 struct tc_fq_qd_stats *st; local
316 if (RTA_PAYLOAD(xstats) < sizeof(*st))
319 st = RTA_DATA(xstats);
322 st->flows, st->inactive_flows, st->throttled_flows);
324 if (st->time_next_delayed_flow > 0)
325 fprintf(f, ", next packet delay %llu ns", st->time_next_delayed_flow);
328 st->gc_flows, st->highprio_packets)
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_program.c 70 delete_vp_variant(struct st_context *st, struct st_vp_variant *vpv)
73 cso_delete_vertex_shader(st->cso_context, vpv->driver_shader);
76 draw_delete_vertex_shader( st->draw, vpv->draw_shader );
90 st_release_vp_variants( struct st_context *st,
97 delete_vp_variant(st, vpv);
116 delete_fp_variant(struct st_context *st, struct st_fp_variant *fpv)
119 cso_delete_fragment_shader(st->cso_context, fpv->driver_shader);
128 st_release_fp_variants(struct st_context *st, struct st_fragment_program *stfp)
134 delete_fp_variant(st, fpv);
152 delete_basic_variant(struct st_context *st, struct st_basic_variant *v
1800 struct st_context *st = (struct st_context *) userData; local
1835 struct st_context *st = (struct st_context *) userData; local
    [all...]
st_cb_readpixels.c 95 try_pbo_readpixels(struct st_context *st, struct st_renderbuffer *strb,
101 struct pipe_context *pipe = st->pipe;
103 struct cso_context *cso = st->cso_context;
128 if (!st_pbo_addresses_pixelstore(st, GL_TEXTURE_2D, false, pack, pixels, &addr))
220 cso_set_blend(cso, &st->pbo.upload_blend);
235 void *fs = st_pbo_get_download_fs(st, view_target, src_format, dst_format);
242 success = st_pbo_draw(st, &addr, fb.width, fb.height);
256 void st_invalidate_readpix_cache(struct st_context *st)
258 pipe_resource_reference(&st->readpix_cache.src, NULL);
259 pipe_resource_reference(&st->readpix_cache.cache, NULL)
409 struct st_context *st = st_context(ctx); local
    [all...]

Completed in 1129 milliseconds

<<11121314151617181920>>