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

1 2 3 4 5 67 8 91011>>

  /external/curl/src/
tool_cb_dbg.c 104 size_t st = 0; local
116 (void)fwrite(data + st, i - st + 1, 1, output);
117 st = i + 1;
123 (void)fwrite(data + st, i - st + 1, 1, output);
  /external/e2fsprogs/lib/blkid/
cache.c 162 struct stat st; local
171 if (stat(dev->bid_name, &st) < 0) {
  /external/google-breakpad/src/client/linux/minidump_writer/
linux_core_dumper_unittest.cc 84 struct stat st; local
85 if (stat(core_file.c_str(), &st) != 0) {
  /external/google-breakpad/src/common/linux/
google_crashdump_uploader.cc 177 struct stat st; local
178 int err = stat(minidump_pathname_.c_str(), &st);
  /external/iproute2/tc/
q_choke.c 207 struct tc_choke_xstats *st; local
212 if (RTA_PAYLOAD(xstats) < sizeof(*st))
215 st = RTA_DATA(xstats);
217 st->marked, st->early, st->pdrop, st->other, st->matched);
q_pie.c 193 struct tc_pie_xstats *st; local
198 if (RTA_PAYLOAD(xstats) < sizeof(*st))
201 st = RTA_DATA(xstats);
204 (double)st->prob / (double)0xffffffff, st->delay,
205 st->avg_dq_rate);
207 st->packets_in, st->overlimit, st->dropped, st->maxq
    [all...]
q_red.c 206 struct tc_red_xstats *st; local
211 if (RTA_PAYLOAD(xstats) < sizeof(*st))
214 st = RTA_DATA(xstats);
216 st->marked, st->early, st->pdrop, st->other);
  /external/ipsec-tools/src/racoon/
plainrsa-gen.c 161 struct stat st; local
187 if (stat(fname, &st) >= 0) {
  /external/libnl/lib/route/
pktloc.c 83 struct stat st = {0}; local
91 if (stat(path, &st) == 0) {
93 if (last_read == st.st_mtime)
122 last_read = st.st_mtime;
  /external/libnl/src/
nl-link-stats.c 47 uint64_t st = rtnl_link_get_stat(link, id); local
51 rtnl_link_stat2str(id, buf, sizeof(buf)), st);
  /external/llvm/unittests/IR/
TypeBuilderTest.cpp 189 std::vector<Type*> st; local
190 st.push_back(TypeBuilder<int, cross>::get(Context));
191 st.push_back(TypeBuilder<int*, cross>::get(Context));
192 st.push_back(TypeBuilder<void*[], cross>::get(Context));
193 static StructType *const result = StructType::get(Context, st);
212 std::vector<Type*> st; local
213 st.push_back(TypeBuilder<types::i<32>, cross>::get(Context));
214 st.push_back(TypeBuilder<types::i<32>*, cross>::get(Context));
215 st.push_back(TypeBuilder<types::i<8>*[], cross>::get(Context));
216 static StructType *const result = StructType::get(Context, st);
    [all...]
  /external/mesa3d/src/gallium/state_trackers/dri/common/
dri_context.c 101 st_share = ((struct dri_context *)sharedContextPrivate)->st;
119 ctx->st = stapi->create_context(stapi, &screen->base, &attribs, &ctx_err,
121 if (ctx->st == NULL) {
147 ctx->st->st_manager_private = (void *) ctx;
159 if (ctx && ctx->st)
160 ctx->st->destroy(ctx->st);
182 ctx->st->flush(ctx->st, 0, NULL);
183 ctx->st->destroy(ctx->st)
259 struct st_context_iface *st; local
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_bufferobjects.c 179 struct st_context *st = st_context(ctx); local
180 struct pipe_context *pipe = st->pipe;
383 st_bufferobj_validate_usage(struct st_context *st,
st_context.c 78 struct st_context *st = st_context(ctx); local
81 if (st->clamp_frag_color_in_shader && (new_state & _NEW_FRAG_CLAMP)) {
83 st->dirty.st |= ST_NEW_FRAGMENT_PROGRAM;
87 if (st->clamp_vert_color_in_shader && (new_state & _NEW_LIGHT)) {
88 st->dirty.st |= ST_NEW_VERTEX_PROGRAM;
91 st->dirty.mesa |= new_state;
92 st->dirty.st |= ST_NEW_MESA
122 struct st_context *st = ST_CALLOC_STRUCT( st_context ); local
    [all...]
st_draw.c 92 setup_index_buffer(struct st_context *st,
106 else if (st->indexbuf_uploader) {
107 if (u_upload_data(st->indexbuf_uploader, 0,
113 u_upload_unmap(st->indexbuf_uploader);
120 cso_set_index_buffer(st->cso_context, ibuffer);
199 struct st_context *st = st_context(ctx); local
209 if (st->dirty.st || ctx->NewDriverState) {
210 st_validate_state(st);
212 if (st->vertex_array_out_of_memory
    [all...]
  /external/speex/libspeex/
buffer.c 53 SpeexBuffer *st = speex_alloc(sizeof(SpeexBuffer)); local
54 st->data = speex_alloc(size);
55 st->size = size;
56 st->read_ptr = 0;
57 st->write_ptr = 0;
58 st->available = 0;
59 return st;
62 EXPORT void speex_buffer_destroy(SpeexBuffer *st)
64 speex_free(st->data);
65 speex_free(st);
    [all...]
  /external/testng/src/main/java/org/testng/internal/annotations/
Converter.java 63 StringTokenizer st = new StringTokenizer(tagValue, " ,"); local
64 while (st.hasMoreElements()) {
65 String className = (String) st.nextElement();
  /external/toybox/toys/other/
makedevs.c 61 struct stat st; local
98 if (stat(ptr, &st) || !S_ISREG(st.st_mode)) {
  /external/toybox/toys/pending/
more.c 75 struct stat st; local
102 st.st_size = show_prompt = col = row = 0;
103 fstat(fileno(fp), &st); local
114 if (st.st_size)
116 (int) (100 * ( (double) ftell(fp) / (double) st.st_size)),
117 (long long)st.st_size);
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
refiner.c 110 const size_t st = ENH_FL0 - searchSegStartPos - tloc2; local
111 WebRtcSpl_MemSetW16(vect, 0, st);
112 WEBRTC_SPL_MEMCPY_W16(&vect[st], idata, ENH_VECTL - st);
114 const size_t st = searchSegStartPos + tloc2 - ENH_FL0; local
115 if ((st + ENH_VECTL) > idatal) {
116 const size_t en = st + ENH_VECTL - idatal;
117 WEBRTC_SPL_MEMCPY_W16(vect, &idata[st], ENH_VECTL - en);
120 WEBRTC_SPL_MEMCPY_W16(vect, &idata[st], ENH_VECTL);
  /frameworks/av/media/libstagefright/id3/
testid3.cpp 113 struct stat st; local
114 if (stat(path, &st) == 0 && S_ISREG(st.st_mode)) {
  /frameworks/base/core/java/android/text/style/
DrawableMarginSpan.java 45 int st = ((Spanned) text).getSpanStart(this); local
47 int itop = (int)layout.getLineTop(layout.getLineForOffset(st));
  /hardware/intel/common/libva/va/android/
va_android.cpp 48 struct stat st; local
51 if (-1 == stat (dev_name, &st))
58 if (!S_ISCHR (st.st_mode))
  /system/core/libcutils/
ashmem-dev.c 52 struct stat st; local
59 ret = TEMP_FAILURE_RETRY(fstat(fd, &st));
66 if (!S_ISCHR(st.st_mode) || !st.st_rdev) {
72 __ashmem_rdev = st.st_rdev;
91 struct stat st; local
93 if (TEMP_FAILURE_RETRY(fstat(fd, &st)) < 0) {
98 if (S_ISCHR(st.st_mode) && st.st_rdev) {
115 if (st.st_rdev == rdev)
    [all...]
  /system/extras/tests/timetest/
rtc_test.cpp 39 struct stat st; local
40 ret = TEMP_FAILURE_RETRY(stat(rtc, &st));
43 } else if (!(st.st_mode & (S_IWUSR|S_IWGRP|S_IWOTH))) {

Completed in 1311 milliseconds

1 2 3 4 5 67 8 91011>>