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

<<11121314151617181920>>

  /external/e2fsprogs/misc/
chattr.c 195 STRUCT_STAT st; local
197 if (LSTAT (name, &st) == -1) {
228 if (!S_ISDIR(st.st_mode))
250 if (S_ISDIR(st.st_mode) && recursive)
  /external/e2fsprogs/util/
subst.c 373 struct stat st; local
394 if (stat(outfn, &st) == 0)
395 chmod(outfn, st.st_mode & ~0222);
  /external/eigen/bench/
BenchTimer.h 137 SYSTEMTIME st; local
138 GetSystemTime(&st);
139 return (double)st.wSecond + 1.e-3 * (double)st.wMilliseconds;
  /external/elfutils/libdwfl/
find-debuginfo.c 56 struct stat st; local
60 else if (fstat (fd, &st) == 0
61 && st.st_ino == main_stat->st_ino
62 && st.st_dev == main_stat->st_dev)
  /external/google-breakpad/src/client/mac/tests/
crash_generation_server_test.cc 201 struct stat st; local
202 EXPECT_EQ(0, stat(last_dump_name.c_str(), &st));
203 EXPECT_LT(0, st.st_size);
246 struct stat st; local
247 EXPECT_EQ(0, stat(last_dump_name.c_str(), &st));
248 EXPECT_LT(0, st.st_size);
310 struct stat st; local
311 EXPECT_EQ(0, stat(last_dump_name.c_str(), &st));
312 EXPECT_LT(0, st.st_size);
minidump_generator_test.cc 102 struct stat st; local
103 ASSERT_EQ(0, stat(dump_filename.c_str(), &st));
104 ASSERT_LT(0, st.st_size);
187 struct stat st; local
188 ASSERT_EQ(0, stat(dump_filename.c_str(), &st));
189 ASSERT_LT(0, st.st_size);
266 struct stat st; local
267 ASSERT_EQ(0, stat(dump_filename.c_str(), &st));
268 ASSERT_LT(0, st.st_size);
  /external/gptfdisk/
diskio-unix.cc 49 struct stat64 st; local
74 if (fstat64(fd, &st) == 0) {
75 if (S_ISDIR(st.st_mode))
78 else if (S_ISCHR(st.st_mode))
81 else if (S_ISFIFO(st.st_mode))
83 else if (S_ISSOCK(st.st_mode))
392 struct stat64 st; local
451 if (fstat64(fd, &st) == 0) {
452 bytes = st.st_size;
  /external/icu/icu4c/source/test/intltest/
windttst.cpp 73 SYSTEMTIME st; local
97 GetSystemTime(&st);
98 SystemTimeToFileTime(&st, &ft);
99 SystemTimeToTzSpecificLocalTime(&tzi, &st, &winNow);
  /external/iproute2/ip/
ipmaddr.c 98 int st; local
101 sscanf(buf, "%d%s%d%d%s", &m.index, m.name, &m.users, &st,
115 if (st)
  /external/iproute2/tc/
q_cbq.c 563 struct tc_cbq_xstats *st; local
568 if (RTA_PAYLOAD(xstats) < sizeof(*st))
571 st = RTA_DATA(xstats);
572 fprintf(f, " borrowed %u overactions %u avgidle %g undertime %g", st->borrows,
573 st->overactions, (double)st->avgidle, (double)st->undertime);
q_fq.c 290 struct tc_fq_qd_stats *st; local
295 if (RTA_PAYLOAD(xstats) < sizeof(*st))
298 st = RTA_DATA(xstats);
301 st->flows, st->inactive_flows, st->throttled_flows);
303 if (st->time_next_delayed_flow > 0)
304 fprintf(f, ", next packet delay %llu ns", st->time_next_delayed_flow);
307 st->gc_flows, st->highprio_packets)
    [all...]
q_hfsc.c 126 struct tc_hfsc_stats *st; local
130 if (RTA_PAYLOAD(xstats) < sizeof(*st))
132 st = RTA_DATA(xstats);
134 fprintf(f, " period %u ", st->period);
135 if (st->work != 0)
136 fprintf(f, "work %llu bytes ", (unsigned long long) st->work);
137 if (st->rtwork != 0)
138 fprintf(f, "rtwork %llu bytes ", (unsigned long long) st->rtwork);
139 fprintf(f, "level %u ", st->level);
q_htb.c 355 struct tc_htb_xstats *st; local
359 if (RTA_PAYLOAD(xstats) < sizeof(*st))
362 st = RTA_DATA(xstats);
364 st->lends,st->borrows,st->giants);
365 fprintf(f, " tokens: %d ctokens: %d\n", st->tokens,st->ctokens);
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
Analyzer.java 233 final StringTokenizer st = new StringTokenizer(path, File.pathSeparator); local
234 while (st.hasMoreTokens()) {
235 count += analyzeAll(new File(basedir, st.nextToken()));
  /external/jarjar/src/main/com/tonicsystems/jarjar/util/
ClassPathIterator.java 51 StringTokenizer st = new StringTokenizer(classPath, delim); local
53 while (st.hasMoreTokens()) {
54 String part = (String)st.nextElement();
  /external/libedit/src/
unvis.c 197 unsigned char st, ia, is, lc; local
209 st = GS(*astate);
212 switch (st) {
225 switch (st) {
  /external/libmicrohttpd/src/testspdy/
test_request_response_with_callback.c 270 struct stat st; local
286 if(0 == ret && 0 == stat(DATA_DIR "spdy-draft.txt", &st))
289 printf("%lld bytes read in %llu usecs\n", (long long)st.st_size, (long long unsigned )usecs);
  /external/libopus/src/
opus_multistream_decoder.c 64 OpusMSDecoder *st,
81 st->layout.nb_channels = channels;
82 st->layout.nb_streams = streams;
83 st->layout.nb_coupled_streams = coupled_streams;
85 for (i=0;i<st->layout.nb_channels;i++)
86 st->layout.mapping[i] = mapping[i];
87 if (!validate_layout(&st->layout))
90 ptr = (char*)st + align(sizeof(OpusMSDecoder));
94 for (i=0;i<st->layout.nb_coupled_streams;i++)
100 for (;i<st->layout.nb_streams;i++
120 OpusMSDecoder *st; local
    [all...]
  /external/libvncserver/client_examples/
vnc2mpg.c 51 AVStream *st; local
53 st = av_new_stream(oc, 0);
54 if (!st) {
60 c = &st->codec;
62 c = st->codec;
96 return st;
119 void open_video(AVFormatContext *oc, AVStream *st)
125 c = &st->codec;
127 c = st->codec;
171 void write_video_frame(AVFormatContext *oc, AVStream *st)
    [all...]
  /external/lzma/C/
XzIn.c 281 CXzStream st; local
283 Xz_Construct(&st);
284 res = Xz_ReadBackward(&st, stream, startOffset, alloc);
285 st.startOffset = *startOffset;
299 p->streams[p->num++] = st;
  /external/lzma/CPP/Windows/
TimeUtils.cpp 195 SYSTEMTIME st; local
196 GetSystemTime(&st);
197 SystemTimeToFileTime(&st, &ft);
  /external/mesa3d/src/gallium/drivers/i915/
i915_state_dynamic.c 209 unsigned st[2]; local
211 st[0] = _3DSTATE_STIPPLE;
212 st[1] = 0;
216 st[1] |= i915->rasterizer->st;
231 st[1] |= ((p[0] << 0) |
237 set_dynamic_array(i915, I915_DYNAMIC_STP_0, st, 2);
  /external/mesa3d/src/gallium/drivers/svga/
svga_resource_texture.c 54 struct svga_transfer *st,
59 struct svga_texture *texture = svga_texture(st->base.resource);
63 box.x = st->base.box.x;
65 box.z = st->base.box.z;
66 box.w = st->base.box.width;
73 if (st->base.resource->target == PIPE_TEXTURE_CUBE) {
74 st->face = st->base.box.z;
78 st->face = 0;
83 st->face
249 struct svga_transfer *st; local
327 struct svga_transfer *st = svga_transfer(transfer); local
347 struct svga_transfer *st = svga_transfer(transfer); local
362 struct svga_transfer *st = svga_transfer(transfer); local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/core/
kernel.cpp 68 void *st = exec.bind(&q); local
72 q.pipe->bind_compute_state(q.pipe, st);
134 kern(kern), q(NULL), mem_local(0), st(NULL) {
138 if (st)
139 q->pipe->delete_compute_state(q->pipe, st);
150 if (!st || q != __q ||
153 if (st)
154 __q->pipe->delete_compute_state(__q->pipe, st);
159 st = q->pipe->create_compute_state(q->pipe, &cs);
162 return st;
    [all...]
kernel.hpp 64 void *st; member in struct:_cl_kernel::exec_context
168 pipe_surface *st; member in class:_cl_kernel::constant_argument
181 pipe_sampler_view *st; member in class:_cl_kernel::image_rd_argument
194 pipe_surface *st; member in class:_cl_kernel::image_wr_argument
207 void *st; member in class:_cl_kernel::sampler_argument

Completed in 709 milliseconds

<<11121314151617181920>>