Home
last modified time | relevance | path

Searched refs:ws (Results 1 – 25 of 53) sorted by relevance

123

/external/srec/srec/cfront/
Dwav_acc.c75 void reset_sig_check(wave_stats *ws) in reset_sig_check() argument
82 ASSERT(ws); in reset_sig_check()
84 ws->sum = 0; in reset_sig_check()
85 ws->sum2 = 0; in reset_sig_check()
86 ws->sumsqu = 0; in reset_sig_check()
87 ws->sumsqu2 = 0; in reset_sig_check()
88 ws->nsam = 0; in reset_sig_check()
89 ws->highclip = 0; in reset_sig_check()
90 ws->lowclip = 0; in reset_sig_check()
93 ws->bithist[ii] = 0; in reset_sig_check()
[all …]
Dca_wave.c210 wave_stats *ws; in CA_DoSignalCheck() local
214 ws = &hWave->data.stats; in CA_DoSignalCheck()
215 get_sig_check(ws, &nsam, &pclowclip, &pchighclip, &dc_offset, &amp, in CA_DoSignalCheck()
218 if ((pclowclip + pchighclip) > ws->max_per10000_clip) in CA_DoSignalCheck()
221 if (abs(dc_offset) > ws->max_dc_offset) *dcoffset = ESR_TRUE; in CA_DoSignalCheck()
223 if (pc5 >= ws->high_noise_level_bit) *highnoise = ESR_TRUE; in CA_DoSignalCheck()
225 if (pc95 < ws->low_speech_level_bit) *quietspeech = ESR_TRUE; in CA_DoSignalCheck()
227 if (nsam < ws->min_samples) *too_few_samples = ESR_TRUE; in CA_DoSignalCheck()
/external/webkit/WebKitTools/android/flex-2.5.4a/MISC/fastwc/
Dwc4.l3 ws [ \t]
5 word {ws}*{nonws}+
6 words {word}{ws}+
11 {word}{ws}* ++wc; cc += yyleng;
12 {word}{ws}*\n ++wc; cc += yyleng; ++lc;
13 {words}{word}{ws}* wc += 2; cc += yyleng;
14 {words}{word}{ws}*\n wc += 2; cc += yyleng; ++lc;
15 {words}{2}{word}{ws}* wc += 3; cc += yyleng;
16 {words}{2}{word}{ws}*\n wc += 3; cc += yyleng; ++lc;
17 {words}{3}{word}{ws}* wc += 4; cc += yyleng;
[all …]
Dwc3.l3 ws [ \t]
5 word {ws}*{nonws}+
6 words {word}{ws}+
11 {word}{ws}* cc += yyleng; ++wc;
12 {word}{ws}*\n cc += yyleng; ++wc; ++lc;
13 {words}{word}{ws}* cc += yyleng; wc += 2;
14 {words}{2}{word}{ws}* cc += yyleng; wc += 3;
15 {words}{3}{word}{ws}* cc += yyleng; wc += 4;
17 {ws}+ cc += yyleng;
Dwc5.l3 ws [ \t]
5 word {ws}*{nonws}+
6 words {word}{ws}+
11 {word}{ws}* cc += yyleng; ++wc;
12 {word}{ws}*\n cc += yyleng; ++wc; ++lc;
14 {words}{2}{word}{ws}* cc += yyleng; wc += 3;
15 {words}{3}{word}{ws}* cc += yyleng; wc += 4;
17 {ws}+ cc += yyleng;
Dwc2.l3 ws [ \t]
5 word {ws}*{nonws}+
10 {word}{ws}* cc += yyleng; ++wc;
11 {word}{ws}*\n cc += yyleng; ++wc; ++lc;
13 {ws}+ cc += yyleng;
Dwc1.l3 ws [ \t]
11 {ws}+ cc += yyleng;
/external/dropbear/
Dcli-chansession.c241 struct winsize ws; in put_winsize() local
243 if (ioctl(STDIN_FILENO, TIOCGWINSZ, &ws) < 0) { in put_winsize()
245 ws.ws_row = 25; in put_winsize()
246 ws.ws_col = 80; in put_winsize()
247 ws.ws_xpixel = 0; in put_winsize()
248 ws.ws_ypixel = 0; in put_winsize()
251 buf_putint(ses.writepayload, ws.ws_col); /* Cols */ in put_winsize()
252 buf_putint(ses.writepayload, ws.ws_row); /* Rows */ in put_winsize()
253 buf_putint(ses.writepayload, ws.ws_xpixel); /* Width */ in put_winsize()
254 buf_putint(ses.writepayload, ws.ws_ypixel); /* Height */ in put_winsize()
/external/e2fsprogs/ext2ed/
Dwin.c190 struct winsize ws; in redraw_all() local
194 ioctl(1, TIOCGWINSZ, &ws); in redraw_all()
200 if (ioctl(1, TIOCGWINSZ, &ws) == 0) { in redraw_all()
201 if (ws.ws_row < min_lines) in redraw_all()
202 ws.ws_row = min_lines; in redraw_all()
203 if ((ws.ws_row != LINES) || (ws.ws_col != COLS)) { in redraw_all()
207 resizeterm(ws.ws_row, ws.ws_col); in redraw_all()
/external/webkit/WebCore/plugins/gtk/
DPluginViewGtk.cpp859 NPSetWindowCallbackStruct* ws = new NPSetWindowCallbackStruct(); in platformStart() local
860 ws->type = 0; in platformStart()
869 ws->display = GDK_WINDOW_XDISPLAY(platformPluginWidget()->window); in platformStart()
870ws->visual = GDK_VISUAL_XVISUAL(gdk_drawable_get_visual(GDK_DRAWABLE(platformPluginWidget()->windo… in platformStart()
871ws->depth = gdk_drawable_get_visual(GDK_DRAWABLE(platformPluginWidget()->window))->depth; in platformStart()
872ws->colormap = GDK_COLORMAP_XCOLORMAP(gdk_drawable_get_colormap(GDK_DRAWABLE(platformPluginWidget(… in platformStart()
875 ws->display = GTK_XTBIN(platformPluginWidget())->xtdisplay; in platformStart()
876 ws->visual = GTK_XTBIN(platformPluginWidget())->xtclient.xtvisual; in platformStart()
877 ws->depth = GTK_XTBIN(platformPluginWidget())->xtclient.xtdepth; in platformStart()
878 ws->colormap = GTK_XTBIN(platformPluginWidget())->xtclient.xtcolormap; in platformStart()
[all …]
/external/stlport/test/unit/
Diostream_test.cpp46 istr >> ws; in manipulators()
55 istr >> ws; in manipulators()
65 istr >> ws; in manipulators()
74 istr >> ws; in manipulators()
/external/v8/src/
Dusage-analyzer.cc117 { WeightScaler ws(this, 0.5); // executed 50% of the time in VisitIfStatement() local
153 WeightScaler ws(this, static_cast<float>(1.0 / cases->length())); in VisitSwitchStatement()
163 WeightScaler ws(this, 10.0); in VisitDoWhileStatement() local
170 WeightScaler ws(this, 10.0); in VisitWhileStatement() local
178 { WeightScaler ws(this, 10.0); // executed in each iteration in VisitForStatement() local
187 WeightScaler ws(this, 10.0); in VisitForInStatement() local
196 { WeightScaler ws(this, 0.25); in VisitTryCatchStatement() local
228 { WeightScaler ws(this, 0.5); in VisitConditional() local
/external/strace/
Dterm.c195 struct winsize ws; local
300 if (!verbose(tcp) || umove(tcp, arg, &ws) < 0)
303 ws.ws_row, ws.ws_col, ws.ws_xpixel, ws.ws_ypixel);
/external/openssl/ssl/
Ds2_enc.c66 EVP_CIPHER_CTX *rs,*ws; in ssl2_enc_init() local
95 ws= s->enc_write_ctx; in ssl2_enc_init()
96 EVP_CIPHER_CTX_init(ws); in ssl2_enc_init()
106 EVP_EncryptInit_ex(ws,c,NULL,&(s->s2->key_material[(client)?num:0]), in ssl2_enc_init()
/external/embunit/src/
DTestCase.c55 TestCase* ws = self_; /*push*/ in TestCase_run() local
60 self_ = ws; /*pop*/ in TestCase_run()
/external/libxml2/include/libxml/
Dxmlschemastypes.h60 xmlSchemaWhitespaceValueType ws);
105 xmlSchemaWhitespaceValueType ws);
117 xmlSchemaWhitespaceValueType ws);
/external/qemu/
Dcurses.c121 } ws; in curses_winch_handler() local
124 if (ioctl(1, TIOCGWINSZ, &ws) == -1) in curses_winch_handler()
127 resize_term(ws.ws_row, ws.ws_col); in curses_winch_handler()
/external/srec/srec/include/
Dsample.h201 void reset_sig_check(wave_stats *ws);
202 void get_sig_check(wave_stats *ws, int *nsam, int *pclowclip, int *pchighclip,
/external/chromium/third_party/icu/source/test/perf/ustrperf/
Dstringperf.h242 wchar_t ws[100]; in prepareLinesForStd() local
243 int32_t wcap = sizeof(ws) / sizeof(*ws); in prepareLinesForStd()
250 wcs = u_strToWCS(ws, wcap, &wl, lines_[i].name, lines_[i].len, &err); in prepareLinesForStd()
255 wcs = u_strToWCS(ws, wcap, &wl, lines_[i].name, lines_[i].len-1, &err); in prepareLinesForStd()
/external/icu4c/test/perf/ustrperf/
Dstringperf.h242 wchar_t ws[100]; in prepareLinesForStd() local
243 int32_t wcap = sizeof(ws) / sizeof(*ws); in prepareLinesForStd()
250 wcs = u_strToWCS(ws, wcap, &wl, lines_[i].name, lines_[i].len, &err); in prepareLinesForStd()
255 wcs = u_strToWCS(ws, wcap, &wl, lines_[i].name, lines_[i].len-1, &err); in prepareLinesForStd()
/external/chromium/net/third_party/nss/ssl/
Dssl3con.c2653 if ((ss->ssl3.hs.ws == wait_server_hello) && in ssl3_HandleAlert()
2663 if ((desc == no_certificate) && (ss->ssl3.hs.ws == wait_client_cert)) { in ssl3_HandleAlert()
2668 ss->ssl3.hs.ws = wait_client_key; in ssl3_HandleAlert()
2743 SSL3WaitState ws = ss->ssl3.hs.ws; in ssl3_HandleChangeCipherSpecs() local
2752 if (ws != wait_change_cipher) { in ssl3_HandleChangeCipherSpecs()
2779 ss->ssl3.hs.ws = wait_finished; in ssl3_HandleChangeCipherSpecs()
3989 ss->ssl3.hs.ws = wait_server_hello; in ssl3_SendClientHello()
4010 if (ss->ssl3.hs.ws == wait_server_hello) in ssl3_HandleHelloRequest()
4012 if (ss->ssl3.hs.ws != idle_handshake || ss->sec.isServer) { in ssl3_HandleHelloRequest()
4819 if (ss->ssl3.hs.ws != wait_server_hello) { in ssl3_HandleServerHello()
[all …]
/external/libxml2/
Dxmlschemastypes.c2127 xmlSchemaWhitespaceValueType ws, in xmlSchemaValAtomicType() argument
2181 if (ws == XML_SCHEMA_WHITESPACE_REPLACE) { in xmlSchemaValAtomicType()
2189 } else if (ws == XML_SCHEMA_WHITESPACE_COLLAPSE) { in xmlSchemaValAtomicType()
2205 if (ws == XML_SCHEMA_WHITESPACE_COLLAPSE) in xmlSchemaValAtomicType()
2207 else if (ws == XML_SCHEMA_WHITESPACE_REPLACE) in xmlSchemaValAtomicType()
2224 if (ws == XML_SCHEMA_WHITESPACE_COLLAPSE) in xmlSchemaValAtomicType()
5111 xmlSchemaWhitespaceValueType ws) in xmlSchemaValidateLengthFacetInternal() argument
5141 if (ws == XML_SCHEMA_WHITESPACE_UNKNOWN) { in xmlSchemaValidateLengthFacetInternal()
5153 if (ws == XML_SCHEMA_WHITESPACE_COLLAPSE) in xmlSchemaValidateLengthFacetInternal()
5254 xmlSchemaWhitespaceValueType ws) in xmlSchemaValidateLengthFacetWhtsp() argument
[all …]
/external/stlport/stlport/using/
Distream15 using _STLP_NEW_IO_NAMESPACE::ws;
/external/stlport/stlport/
Distream.h41 using _STLP_STD::ws;
/external/ipsec-tools/src/libipsec/
Dpolicy_token.l70 ws [ \t]+

123