Searched refs:st (Results 151 - 175 of 842) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/bin/ad/
H A Dad_ls.c216 static void print_flags(char *path, afpvol_t *vol, const struct stat *st) argument
228 if (S_ISDIR(st->st_mode))
387 #define TYPE(b) ((st->st_mode & (S_IFMT)) == (b))
388 #define MODE(b) ((st->st_mode & (b)) == (b))
390 static void print_mode(const struct stat *st) argument
448 static int ad_print(char *path, const struct stat *st, afpvol_t *vol) argument
459 print_mode(st);
460 print_numlinks(st);
461 print_owner(st);
462 print_group(st);
481 static struct stat st; /* Save some stack space */ local
602 struct stat st; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/bin/ad/
H A Dad_ls.c216 static void print_flags(char *path, afpvol_t *vol, const struct stat *st) argument
228 if (S_ISDIR(st->st_mode))
387 #define TYPE(b) ((st->st_mode & (S_IFMT)) == (b))
388 #define MODE(b) ((st->st_mode & (b)) == (b))
390 static void print_mode(const struct stat *st) argument
448 static int ad_print(char *path, const struct stat *st, afpvol_t *vol) argument
459 print_mode(st);
460 print_numlinks(st);
461 print_owner(st);
462 print_group(st);
481 static struct stat st; /* Save some stack space */ local
602 struct stat st; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/tc/
H A Dtc_util.c486 struct tc_stats st; local
489 memset(&st, 0, sizeof(st));
490 memcpy(&st, RTA_DATA(tb[TCA_STATS]), MIN(RTA_PAYLOAD(tb[TCA_STATS]), sizeof(st)));
493 prefix, (unsigned long long)st.bytes, st.packets, st.drops,
494 st.overlimits);
496 if (st
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavformat/
H A Dau.c127 AVStream *st; local
148 st = av_new_stream(s, 0);
149 if (!st)
151 st->codec->codec_type = CODEC_TYPE_AUDIO;
152 st->codec->codec_tag = id;
153 st->codec->codec_id = codec;
154 st->codec->channels = channels;
155 st->codec->sample_rate = rate;
156 av_set_pts_info(st, 64, 1, rate);
H A Draw.c67 AVStream *st; local
70 st = av_new_stream(s, 0);
71 if (!st)
76 st->codec->codec_type = CODEC_TYPE_VIDEO;
78 st->codec->codec_type = CODEC_TYPE_AUDIO;
80 st->codec->codec_id = id;
82 switch(st->codec->codec_type) {
84 st->codec->sample_rate = ap->sample_rate;
85 if(ap->channels) st->codec->channels = ap->channels;
86 else st
158 AVStream *st = s->streams[0]; local
222 AVStream *st; local
253 AVStream *st = av_new_stream(s, 0); local
268 AVStream *st; local
[all...]
H A Dimg2.c189 AVStream *st; local
193 st = av_new_stream(s1, 0);
194 if (!st) {
207 st->need_parsing = AVSTREAM_PARSE_FULL;
211 av_set_pts_info(st, 60, 1, 25);
213 av_set_pts_info(st, 60, ap->time_base.num, ap->time_base.den);
217 st->codec->width = ap->width;
218 st->codec->height= ap->height;
228 st->start_time = 0;
229 st
364 AVStream *st = s->streams[0]; local
[all...]
H A Dvocdec.c45 AVStream *st; local
54 st = av_new_stream(s, 0);
55 if (!st)
57 st->codec->codec_type = CODEC_TYPE_AUDIO;
64 voc_get_packet(AVFormatContext *s, AVPacket *pkt, AVStream *st, int max_size) argument
67 AVCodecContext *dec = st->codec;
H A Dpva.c44 AVStream *st; local
46 if (!(st = av_new_stream(s, 0)))
48 st->codec->codec_type = CODEC_TYPE_VIDEO;
49 st->codec->codec_id = CODEC_ID_MPEG2VIDEO;
50 st->need_parsing = AVSTREAM_PARSE_FULL;
51 av_set_pts_info(st, 32, 1, 90000);
52 av_add_index_entry(st, 0, 0, 0, 0, AVINDEX_KEYFRAME);
54 if (!(st = av_new_stream(s, 1)))
56 st->codec->codec_type = CODEC_TYPE_AUDIO;
57 st
[all...]
H A Dwv.c136 AVStream *st; local
143 st = av_new_stream(s, 0);
144 if (!st)
146 st->codec->codec_type = CODEC_TYPE_AUDIO;
147 st->codec->codec_id = CODEC_ID_WAVPACK;
148 st->codec->channels = wc->chan;
149 st->codec->sample_rate = wc->rate;
150 st->codec->bits_per_coded_sample = wc->bpp;
151 av_set_pts_info(st, 64, 1, wc->rate);
153 s->duration = (int64_t)wc->samples * AV_TIME_BASE / st
188 AVStream *st = s->streams[stream_index]; local
[all...]
H A Drdt.c136 rdt_load_mdpr (PayloadContext *rdt, AVStream *st, int rule_nr) argument
183 if (ff_rm_read_mdpr_codecdata(rdt->rmctx, &pb, st, rdt->rmst[st->index], size) < 0)
298 rdt_parse_packet (AVFormatContext *ctx, PayloadContext *rdt, AVStream *st, argument
310 res = ff_rm_parse_packet (rdt->rmctx, &pb, st, rdt->rmst[st->index], len, pkt,
317 st->codec->codec_id == CODEC_ID_AAC) {
325 st, rdt->rmst[st->index], pkt);
327 st
436 real_parse_asm_rule(AVStream *st, const char *p, const char *end) argument
451 AVStream *st; local
468 AVStream *st; local
[all...]
H A Dassdec.c93 AVStream *st; local
98 st = av_new_stream(s, 0);
99 if (!st)
101 av_set_pts_info(st, 64, 1, 100);
102 st->codec->codec_type = CODEC_TYPE_SUBTITLE;
103 st->codec->codec_id= CODEC_ID_SSA;
106 dst[0] = &st->codec->extradata;
132 st->codec->extradata_size= pos[0];
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/i386/math-emu/
H A Dreg_divide.c42 b = &st(0);
52 a = &st(rm);
59 a = &st(0);
69 b = &st(rm);
80 dest = &st(deststnr);
157 return real_2op_NaN(st0_ptr, tag, rm, (flags & REV) ? st0_ptr : &st(rm));
164 tag = FPU_Special(&st(rm));
165 return real_2op_NaN(&st(rm), tag, 0, (flags & REV) ? st0_ptr : &st(rm));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/smbd/
H A Dfilename.c88 SMB_STRUCT_STAT st; local
134 if (SMB_VFS_STAT(conn,name,&st) == 0) {
135 *pst = st;
159 if(!conn->case_sensitive && stat_cache_lookup(conn, name, dirpath, &start, &st)) {
160 *pst = st;
168 if (SMB_VFS_STAT(conn,name,&st) == 0) {
171 *pst = st;
224 if (SMB_VFS_STAT(conn,name, &st) == 0) {
229 if (end && !(st.st_mode & S_IFDIR)) {
254 *pst = st;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/l2tpd-0.69/
H A Dnetwork.c276 struct tunnel *st; /* Tunnel */ local
291 st = tunnels.head;
292 while (st)
294 if (st->self->needclose ^ st->self->closing)
298 __FUNCTION__, st->ourtid);
299 call_close (st->self);
302 st = tunnels.head;
303 if (!st)
307 sc = st
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/libatalk/adouble/
H A Dad_mmap.c63 struct stat st; local
67 if ( fstat( ad->ad_df.adf_fd, &st ) < 0 ) {
72 off = st.st_size - off;
76 if (st.st_size < buflen + off)
88 if ( fstat( ad->ad_hf.adf_fd, &st ) < 0 ) {
99 if (st.st_size < buflen + off)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/avr32/kernel/
H A Dsyscall-stubs.S63 st.w --sp, ARG6
72 st.w --sp, ARG6
81 st.w --sp, ARG6
90 st.w --sp, ARG6
99 st.w --sp, ARG6
108 st.w --sp, ARG6
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-sparc/
H A Dkgdb.h67 st %reg_y, [%reg + STACKFRAME_SZ + KGDB_Y]; \
68 st %reg_psr, [%reg + STACKFRAME_SZ + KGDB_PSR]; \
69 st %reg_wim, [%reg + STACKFRAME_SZ + KGDB_WIM]; \
70 st %reg_tbr, [%reg + STACKFRAME_SZ + KGDB_TBR]; \
71 st %reg_pc, [%reg + STACKFRAME_SZ + KGDB_PC]; \
72 st %reg_npc, [%reg + STACKFRAME_SZ + KGDB_NPC];
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/libatalk/cnid/last/
H A Dcnid_last.c25 cnid_t cnid_last_add(struct _cnid_db *cdb, const struct stat *st, argument
66 if (S_ISDIR(st->st_mode))
69 return htonl((st->st_dev << 16) | (st->st_ino & 0x0000ffff));
101 cnid_t cnid_last_lookup(struct _cnid_db *cdb _U_, const struct stat *st _U_, const cnid_t did _U_,
178 int cnid_last_update(struct _cnid_db *cdb _U_, const cnid_t id _U_, const struct stat *st _U_,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/libatalk/adouble/
H A Dad_mmap.c63 struct stat st; local
67 if ( fstat( ad->ad_df.adf_fd, &st ) < 0 ) {
72 off = st.st_size - off;
76 if (st.st_size < buflen + off)
88 if ( fstat( ad->ad_hf.adf_fd, &st ) < 0 ) {
99 if (st.st_size < buflen + off)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/libatalk/cnid/last/
H A Dcnid_last.c25 cnid_t cnid_last_add(struct _cnid_db *cdb, const struct stat *st, argument
66 if (S_ISDIR(st->st_mode))
69 return htonl((st->st_dev << 16) | (st->st_ino & 0x0000ffff));
101 cnid_t cnid_last_lookup(struct _cnid_db *cdb _U_, const struct stat *st _U_, const cnid_t did _U_,
178 int cnid_last_update(struct _cnid_db *cdb _U_, const cnid_t id _U_, const struct stat *st _U_,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/util-linux/
H A Dmore.c63 struct stat st; local
102 st.st_size = 0;
103 fstat(fileno(file), &st); local
119 if (st.st_size > 0) {
121 (int) (ftello(file)*100 / st.st_size),
122 st.st_size);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavdevice/
H A Doss_audio.c160 AVStream *st; local
163 st = s1->streams[0];
164 s->sample_rate = st->codec->sample_rate;
165 s->channels = st->codec->channels;
216 AVStream *st; local
222 st = av_new_stream(s1, 0);
223 if (!st) {
231 av_free(st);
236 st->codec->codec_type = CODEC_TYPE_AUDIO;
237 st
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/dvb/dvb-usb/
H A Dvp702x.c126 struct vp702x_state *st = adap->priv; local
130 st->pid_filter_state |= (1 << id);
132 st->pid_filter_state &= ~(1 << id);
138 vp702x_set_pld_state(adap, st->pid_filter_state);
147 struct vp702x_state *st = adap->priv; local
151 st->pid_filter_count = 8;
152 st->pid_filter_can_bypass = 1;
153 st->pid_filter_state = 0x00;
157 for (i = 0; i < st->pid_filter_count; i++)
208 struct vp702x_device_state *st local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/dvb/frontends/
H A Ddib7000p.c255 static int dib7000p_reset_gpio(struct dib7000p_state *st) argument
258 dprintk("-D- gpio dir: %x: gpio val: %x, gpio pwm pos: %x\n",st->gpio_dir, st->gpio_val,st->cfg.gpio_pwm_pos);
260 dib7000p_write_word(st, 1029, st->gpio_dir);
261 dib7000p_write_word(st, 1030, st->gpio_val);
265 dib7000p_write_word(st, 1032, st
688 dib7000p_identify(struct dib7000p_state *st) argument
864 struct dib7000p_state *st = demod->demodulator_priv; local
901 struct dib7000p_state *st = demod->demodulator_priv; local
908 struct dib7000p_state st = { .i2c_adap = i2c }; local
954 struct dib7000p_state *st; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/bn/asm/alpha/
H A Dsqr_c4.pl68 &st($c0,&QWPw(0,$rp));
73 &st($c0,&QWPw(1,$rp));
79 &st($c0,&QWPw(2,$rp));
85 &st($c0,&QWPw(3,$rp));
91 &st($c0,&QWPw(4,$rp));
96 &st($c0,&QWPw(5,$rp));
101 &st($c0,&QWPw(6,$rp));
102 &st($c1,&QWPw(7,$rp));

Completed in 232 milliseconds

1234567891011>>