Searched defs:st (Results 201 - 225 of 307) sorted by relevance

1234567891011>>

/external/openfst/src/include/fst/extensions/pdt/
H A Dexpand.h49 PdtStateTable<typename Arc::StateId, typename Arc::StateId> *st = 0)
50 : CacheOptions(opts), keep_parentheses(kp), stack(s), state_table(st) {}
393 StackCompare(const StateTable &st, argument
396 : state_table_(st), stack_(s), stack_length_(sl),
435 const PdtStateTable<StateId, StackId> &st,
440 StackCompare(st, s, sl, d, fd)) {}
434 ShortestStackFirstQueue( const PdtStateTable<StateId, StackId> &st, const Stack &s, const vector<StackId> &sl, const vector<Weight> &d, const vector<Weight> &fd) argument
/external/openssh/
H A Dsftp-client.c282 get_decode_statvfs(struct sftp_conn *conn, struct sftp_statvfs *st, argument
311 bzero(st, sizeof(*st));
312 st->f_bsize = buffer_get_int64(&msg);
313 st->f_frsize = buffer_get_int64(&msg);
314 st->f_blocks = buffer_get_int64(&msg);
315 st->f_bfree = buffer_get_int64(&msg);
316 st->f_bavail = buffer_get_int64(&msg);
317 st->f_files = buffer_get_int64(&msg);
318 st
916 do_statvfs(struct sftp_conn *conn, const char *path, struct sftp_statvfs *st, int quiet) argument
943 do_fstatvfs(struct sftp_conn *conn, const char *handle, u_int handle_len, struct sftp_statvfs *st, int quiet) argument
[all...]
H A Dsftp-server.c491 send_statvfs(u_int32_t id, struct statvfs *st) argument
496 flag = (st->f_flag & ST_RDONLY) ? SSH2_FXE_STATVFS_ST_RDONLY : 0;
497 flag |= (st->f_flag & ST_NOSUID) ? SSH2_FXE_STATVFS_ST_NOSUID : 0;
502 buffer_put_int64(&msg, st->f_bsize);
503 buffer_put_int64(&msg, st->f_frsize);
504 buffer_put_int64(&msg, st->f_blocks);
505 buffer_put_int64(&msg, st->f_bfree);
506 buffer_put_int64(&msg, st->f_bavail);
507 buffer_put_int64(&msg, st->f_files);
508 buffer_put_int64(&msg, st
689 struct stat st; local
727 struct stat st; local
928 struct stat st; local
1089 struct stat st; local
1196 struct statvfs st; local
1213 struct statvfs st; local
[all...]
H A Dsshd.c1692 struct stat st; local
1694 if ((stat(_PATH_PRIVSEP_CHROOT_DIR, &st) == -1) ||
1695 (S_ISDIR(st.st_mode) == 0))
1701 (st.st_uid != getuid () ||
1702 (st.st_mode & (S_IWGRP|S_IWOTH)) != 0))
1704 if (st.st_uid != 0 || (st.st_mode & (S_IWGRP|S_IWOTH)) != 0)
2352 /* send 1st encrypted/maced/compressed message */
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-port.h869 inline bool IsDir(const StatStruct& st) { argument
870 return (_S_IFDIR & st.st_mode) != 0;
886 inline bool IsDir(const StatStruct& st) { return S_ISDIR(st.st_mode); }
/external/quake/quake/src/QW/client/
H A Dcl_main.c1054 char st[80]; local
1063 sprintf (st, "%4.2f-%04d", VERSION, build_number());
1064 Info_SetValueForStarKey (cls.userinfo, "*ver", st, MAX_INFO_STRING);
H A Dgl_model.c1527 char st[40]; local
1533 sprintf(st, "%d", (int) crc);
1536 st, MAX_INFO_STRING);
1540 sprintf(st, "setinfo %s %d",
1543 SZ_Print (&cls.netchan.message, st);
H A Dgl_screen.c470 char st[80]; local
482 sprintf(st, "%3d FPS", lastfps);
483 x = vid.width - strlen(st) * 8 - 8;
485 // Draw_TileClear(x, y, strlen(st) * 8, 8);
486 Draw_String(x, y, st);
844 char st[80]; local
933 strcpy(st, ctime(&now));
934 st[strlen(st) - 1] = 0;
935 SCR_DrawStringToSnap (st, newbu
[all...]
H A Dmodel.c1460 char st[40]; local
1466 sprintf(st, "%d", (int) crc);
1469 st, MAX_INFO_STRING);
1473 sprintf(st, "setinfo %s %d",
1476 SZ_Print (&cls.netchan.message, st);
H A Dscreen.c463 char st[80]; local
475 sprintf(st, "%3d FPS", lastfps);
476 x = vid.width - strlen(st) * 8 - 8;
478 // Draw_TileClear(x, y, strlen(st) * 8, 8);
479 Draw_String(x, y, st);
794 char st[80]; local
879 strcpy(st, ctime(&now));
880 st[strlen(st) - 1] = 0;
881 SCR_DrawStringToSnap (st, newbu
[all...]
/external/speex/libspeex/
H A Dmdf.c128 void speex_echo_get_residual(SpeexEchoState *st, spx_word32_t *Yout, int len);
161 spx_word32_t Davg1; /* 1st recursive average of the residual power difference */
163 spx_float_t Dvar1; /* Estimated variance of 1st estimator */
410 SpeexEchoState *st = (SpeexEchoState *)speex_alloc(sizeof(SpeexEchoState)); local
412 st->K = nb_speakers;
413 st->C = nb_mic;
414 C=st->C;
415 K=st->K;
424 st->frame_size = frame_size;
425 st
530 speex_echo_state_reset(SpeexEchoState *st) argument
589 speex_echo_state_destroy(SpeexEchoState *st) argument
636 speex_echo_capture(SpeexEchoState *st, const spx_int16_t *rec, spx_int16_t *out) argument
659 speex_echo_playback(SpeexEchoState *st, const spx_int16_t *play) argument
686 speex_echo_cancel(SpeexEchoState *st, const spx_int16_t *in, const spx_int16_t *far_end, spx_int16_t *out, spx_int32_t *Yout) argument
692 speex_echo_cancellation(SpeexEchoState *st, const spx_int16_t *in, const spx_int16_t *far_end, spx_int16_t *out) argument
1196 speex_echo_get_residual(SpeexEchoState *st, spx_word32_t *residual_echo, int len) argument
1229 speex_echo_ctl(SpeexEchoState *st, int request, void *ptr) argument
[all...]
H A Dpreprocess.c400 SpeexPreprocessState *st = (SpeexPreprocessState *)speex_alloc(sizeof(SpeexPreprocessState)); local
401 st->frame_size = frame_size;
406 st->ps_size = st->frame_size;
409 if (st->ps_size & ~i)
411 st->ps_size &= ~i;
419 if (st->ps_size < 3*st->frame_size/4)
420 st->ps_size = st
533 speex_preprocess_state_destroy(SpeexPreprocessState *st) argument
569 speex_compute_agc(SpeexPreprocessState *st, spx_word16_t Pframe, spx_word16_t *ft) argument
618 preprocess_analysis(SpeexPreprocessState *st, spx_int16_t *x) argument
664 update_noise_prob(SpeexPreprocessState *st) argument
721 speex_preprocess(SpeexPreprocessState *st, spx_int16_t *x, spx_int32_t *echo) argument
726 speex_preprocess_run(SpeexPreprocessState *st, spx_int16_t *x) argument
1013 speex_preprocess_estimate_update(SpeexPreprocessState *st, spx_int16_t *x) argument
1051 SpeexPreprocessState *st; local
[all...]
H A Dresample.c332 static int resampler_basic_direct_single(SpeexResamplerState *st, spx_uint32_t channel_index, const spx_word16_t *in, spx_uint32_t *in_len, spx_word16_t *out, spx_uint32_t *out_len) argument
334 const int N = st->filt_len;
336 int last_sample = st->last_sample[channel_index];
337 spx_uint32_t samp_frac_num = st->samp_frac_num[channel_index];
338 const spx_word16_t *sinc_table = st->sinc_table;
339 const int out_stride = st->out_stride;
340 const int int_advance = st->int_advance;
341 const int frac_advance = st->frac_advance;
342 const spx_uint32_t den_rate = st->den_rate;
376 st
384 resampler_basic_direct_double(SpeexResamplerState *st, spx_uint32_t channel_index, const spx_word16_t *in, spx_uint32_t *in_len, spx_word16_t *out, spx_uint32_t *out_len) argument
433 resampler_basic_interpolate_single(SpeexResamplerState *st, spx_uint32_t channel_index, const spx_word16_t *in, spx_uint32_t *in_len, spx_word16_t *out, spx_uint32_t *out_len) argument
496 resampler_basic_interpolate_double(SpeexResamplerState *st, spx_uint32_t channel_index, const spx_word16_t *in, spx_uint32_t *in_len, spx_word16_t *out, spx_uint32_t *out_len) argument
556 update_filter(SpeexResamplerState *st) argument
736 SpeexResamplerState *st; local
792 speex_resampler_destroy(SpeexResamplerState *st) argument
802 speex_resampler_process_native(SpeexResamplerState *st, spx_uint32_t channel_index, spx_uint32_t *in_len, spx_word16_t *out, spx_uint32_t *out_len) argument
828 speex_resampler_magic(SpeexResamplerState *st, spx_uint32_t channel_index, spx_word16_t **out, spx_uint32_t out_len) argument
849 speex_resampler_process_int(SpeexResamplerState *st, spx_uint32_t channel_index, const spx_int16_t *in, spx_uint32_t *in_len, spx_int16_t *out, spx_uint32_t *out_len) argument
890 speex_resampler_process_float(SpeexResamplerState *st, spx_uint32_t channel_index, const float *in, spx_uint32_t *in_len, float *out, spx_uint32_t *out_len) argument
963 speex_resampler_process_interleaved_float(SpeexResamplerState *st, const float *in, spx_uint32_t *in_len, float *out, spx_uint32_t *out_len) argument
984 speex_resampler_process_interleaved_int(SpeexResamplerState *st, const spx_int16_t *in, spx_uint32_t *in_len, spx_int16_t *out, spx_uint32_t *out_len) argument
1005 speex_resampler_set_rate(SpeexResamplerState *st, spx_uint32_t in_rate, spx_uint32_t out_rate) argument
1010 speex_resampler_get_rate(SpeexResamplerState *st, spx_uint32_t *in_rate, spx_uint32_t *out_rate) argument
1016 speex_resampler_set_rate_frac(SpeexResamplerState *st, spx_uint32_t ratio_num, spx_uint32_t ratio_den, spx_uint32_t in_rate, spx_uint32_t out_rate) argument
1055 speex_resampler_get_ratio(SpeexResamplerState *st, spx_uint32_t *ratio_num, spx_uint32_t *ratio_den) argument
1061 speex_resampler_set_quality(SpeexResamplerState *st, int quality) argument
1073 speex_resampler_get_quality(SpeexResamplerState *st, int *quality) argument
1078 speex_resampler_set_input_stride(SpeexResamplerState *st, spx_uint32_t stride) argument
1083 speex_resampler_get_input_stride(SpeexResamplerState *st, spx_uint32_t *stride) argument
1088 speex_resampler_set_output_stride(SpeexResamplerState *st, spx_uint32_t stride) argument
1093 speex_resampler_get_output_stride(SpeexResamplerState *st, spx_uint32_t *stride) argument
1098 speex_resampler_get_input_latency(SpeexResamplerState *st) argument
1103 speex_resampler_get_output_latency(SpeexResamplerState *st) argument
1108 speex_resampler_skip_zeros(SpeexResamplerState *st) argument
1116 speex_resampler_reset_mem(SpeexResamplerState *st) argument
[all...]
/external/stlport/src/c_locale_glibc/
H A Dc_locale_glibc2.c346 mbstate_t *st)
352 mbstate_t *st)
357 mbstate_t *st,
343 _WLocale_mbtowc(struct _Locale_codecvt *lcodecvt, wchar_t *to, const char *from, size_t n, mbstate_t *st) argument
349 _WLocale_wctomb(struct _Locale_codecvt *lcodecvt, char *to, size_t n, const wchar_t c, mbstate_t *st) argument
356 _WLocale_unshift(struct _Locale_codecvt *lcodecvt, mbstate_t *st, char *buf, size_t n, char ** next) argument
/external/valgrind/main/VEX/unused/
H A Dlinker.c1159 struct stat st; local
1191 r = stat(path, &st);
1198 oc->fileSize = st.st_size;
/external/valgrind/main/coregrind/m_gdbserver/
H A Dm_gdbserver.c1081 IRStmt* st = sb_in->stmts[i]; local
1083 if (!st || st->tag == Ist_NoOp) continue;
1085 if (st->tag == Ist_Exit && instr_needed == Vg_VgdbYes) {
1088 st->Ist.Exit.dst->Ico.U64 :
1089 st->Ist.Exit.dst->Ico.U32);
1091 addStmtToIRSB( sb_out, st );
1092 if (st->tag == Ist_IMark) {
1100 st->Ist.IMark.addr,
1101 st
[all...]
/external/valgrind/main/coregrind/
H A Dm_libcfile.c55 struct vg_stat st; local
56 return VG_(fstat)(fd, &st) == 0;
537 struct vg_stat st; local
538 SysRes res = VG_(stat)(f, &st);
547 if ( (st.mode & (VKI_S_ISUID | VKI_S_ISGID)) && !allow_setuid ) {
553 if (VG_(geteuid)() == st.uid) {
554 if (!(st.mode & VKI_S_IXUSR))
559 if (VG_(getegid)() == st.gid)
567 if (groups[i] == st.gid) {
575 if (!(st
[all...]
H A Dm_translate.c268 IRStmt* st; local
380 st = sb_in->stmts[i];
382 if (st->tag == Ist_IMark) {
384 curr_IP = st->Ist.IMark.addr;
388 if (st->tag != Ist_WrTmp) goto case2;
389 e = st->Ist.WrTmp.data;
393 vg_assert( typeOfIRTemp(bb->tyenv, st->Ist.WrTmp.tmp) == typeof_SP );
394 add_SP_alias(st->Ist.WrTmp.tmp, 0);
395 addStmtToIRSB( bb, st );
400 if (st
[all...]
/external/webkit/Tools/EWebLauncher/
H A Dmain.c794 struct stat st; local
803 if (stat(rpath, &st)) {
/external/wpa_supplicant_6/wpa_supplicant/src/drivers/
H A Ddriver_test.c77 struct stat st; local
78 if (stat(drv->hostapd_addr.sun_path, &st) < 0) {
880 struct stat st; local
885 if (stat(addr_un.sun_path, &st) < 0) {
1059 struct stat st; local
1064 if (stat(addr.sun_path, &st) < 0) {
/external/chromium/testing/gtest/include/gtest/internal/
H A Dgtest-port.h1549 inline bool IsDir(const StatStruct& st) { argument
1550 return (_S_IFDIR & st.st_mode) != 0;
1566 inline bool IsDir(const StatStruct& st) { return S_ISDIR(st.st_mode); }
/external/clang/include/clang/AST/
H A DExprObjC.h560 SourceLocation l, SourceLocation sl, QualType st)
562 /*TypeDependent=*/false, false, st->isInstantiationDependentType(),
563 st->containsUnexpandedParameterPack()),
565 IdLoc(l), ReceiverLoc(sl), Receiver(st.getTypePtr()) {
558 ObjCPropertyRefExpr(ObjCPropertyDecl *PD, QualType t, ExprValueKind VK, ExprObjectKind OK, SourceLocation l, SourceLocation sl, QualType st) argument
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DPathDiagnostic.h535 void setCallStackMessage(StringRef st) { argument
536 CallStackMessage = st;
/external/clang/lib/StaticAnalyzer/Checkers/
H A DMallocChecker.cpp356 StopTrackingCallback(ProgramStateRef st) : state(st) {} argument
/external/dbus/dbus/
H A Ddbus-sysdeps-wince-glue.c385 SYSTEMTIME st; local
386 GetSystemTime (&st);
387 SystemTimeToFileTime (&st, ftp);

Completed in 513 milliseconds

1234567891011>>