/external/srec/srec/cfront/ |
D | wav_acc.c | 75 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 …]
|
D | ca_wave.c | 210 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, &, 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/Tools/android/flex-2.5.4a/MISC/fastwc/ |
D | wc4.l | 3 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 …]
|
D | wc3.l | 3 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;
|
D | wc5.l | 3 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;
|
D | wc2.l | 3 ws [ \t] 5 word {ws}*{nonws}+ 10 {word}{ws}* cc += yyleng; ++wc; 11 {word}{ws}*\n cc += yyleng; ++wc; ++lc; 13 {ws}+ cc += yyleng;
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/tests/testScripts/ |
D | runtests | 14 ws= 27 usage="usage: $0 -os <osType> -ws <windowingSystemType> -arch <architecture> [-noclean] [<test targ… 36 -ws) ws="$2"; shift;; 46 # for *nix systems, os, ws and arch values must be specified 53 if [ "x$ws" = "x" ] 68 # verify os, ws and arch values passed in are valid before running tests 69 …ws-$arch" = "linux-motif-x86" ] || [ "$os-$ws-$arch" = "linux-gtk-x86" ] || [ "$os-$ws-$arch" = "s… 84 ….launcher.Main -noupdate -ws $ws -os $os -arch $arch -application org.eclipse.ant.core.antRunner -… 89 …sgi.ws=$ws -Dosgi.os=$os -Dosgi.arch=$arch org.eclipse.core.launcher.Main -application org.eclipse… 91 # display message to user if os, ws and arch are invalid [all …]
|
D | runtests.bat | 15 REM default values for os, ws and arch 17 set ws=win32 variable 51 if x%1==x-ws set ws=%2 && shift && shift && goto processcmdlineargs variable 74 set antRunner=%vm% -cp eclipse\startup.jar -Dosgi.ws=%ws% -Dosgi.os=%os% -Dosgi.arch=%arch% org.ecl… 76 if %installmode%==noclean %antRunner% -file test.xml setup -Dws=%ws% -Dos=%os% -Darch=%arch% "-D%in… 85 %antRunner% -file test.xml %tests% -Dws=%ws% -Dos=%os% -Darch=%arch% %properties% "-D%installmode%…
|
/external/valgrind/main/helgrind/ |
D | hg_wordset.c | 272 static WordVec* do_ix2vec ( WordSetU* wsu, WordSet ws ) in do_ix2vec() argument 280 tl_assert(ws < wsu->ix2vec_used); /* XXX */ in do_ix2vec() 281 wv = wsu->ix2vec[ws]; in do_ix2vec() 290 static WordVec* do_ix2vec_with_dead ( WordSetU* wsu, WordSet ws ) in do_ix2vec_with_dead() argument 298 tl_assert(ws < wsu->ix2vec_used); /* XXX */ in do_ix2vec_with_dead() 299 wv = wsu->ix2vec[ws]; in do_ix2vec_with_dead() 333 WordSet ws; in add_or_dealloc_WordVec() local 335 ws = wsu->ix2vec_free - &(wsu->ix2vec[0]); in add_or_dealloc_WordVec() 336 tl_assert(wsu->ix2vec[ws] == NULL || is_dead(wsu,wsu->ix2vec[ws])); in add_or_dealloc_WordVec() 337 wsu->ix2vec_free = (WordVec **) wsu->ix2vec[ws]; in add_or_dealloc_WordVec() [all …]
|
/external/llvm/lib/Support/ |
D | LocaleXlocale.inc | 27 llvm::SmallVector<wchar_t,200> ws(size); 28 size = mbstowcs_l(&ws[0],s.c_str(),ws.size(),l); 29 assert(ws.size()==size); 30 return wcswidth_l(&ws[0],ws.size(),l);
|
/external/webkit/LayoutTests/fast/url/ |
D | standard-url-expected.txt | 27 PASS canonicalize('ws://foo:80/') is 'ws://foo/' 28 PASS canonicalize('ws://foo:81/') is 'ws://foo:81/' 29 PASS canonicalize('ws://foo:443/') is 'ws://foo:443/' 30 PASS canonicalize('ws://foo:815/') is 'ws://foo:815/' 42 PASS canonicalize('ws:/example.com/') is 'ws://example.com/' 53 PASS canonicalize('ws:example.com/') is 'ws://example.com/'
|
/external/dropbear/ |
D | cli-chansession.c | 241 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/ |
D | win.c | 190 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/srtp/test/ |
D | rdbx_driver.c | 58 test_replay_dbx(int num_trials, unsigned long ws); 61 rdbx_check_adds_per_second(int num_trials, unsigned long ws); 212 test_replay_dbx(int num_trials, unsigned long ws) { in test_replay_dbx() argument 219 status = rdbx_init(&rdbx, ws); in test_replay_dbx() 258 if (rdbx_init(&rdbx, ws) != err_status_ok) { in test_replay_dbx() 285 if (rdbx_init(&rdbx, ws) != err_status_ok) { in test_replay_dbx() 313 rdbx_check_adds_per_second(int num_trials, unsigned long ws) { in rdbx_check_adds_per_second() argument 321 if (rdbx_init(&rdbx, ws) != err_status_ok) { in rdbx_check_adds_per_second()
|
/external/llvm/unittests/ADT/ |
D | HashingTest.cpp | 114 std::wstring ws = L"Hello Wide World!"; in TEST() local 115 EXPECT_EQ(hash_combine_range(ws.c_str(), ws.c_str() + ws.size()), in TEST() 116 hash_value(ws)); in TEST() 117 EXPECT_EQ(hash_combine_range(ws.c_str(), ws.c_str() + ws.size() - 1), in TEST() 118 hash_value(ws.substr(0, ws.size() - 1))); in TEST() 119 EXPECT_EQ(hash_combine_range(ws.c_str() + 1, ws.c_str() + ws.size() - 1), in TEST() 120 hash_value(ws.substr(1, ws.size() - 2))); in TEST()
|
/external/srtp/googlepatches/ |
D | vidyo-4-srtp-rtx.patch | 1 diff -purN -x CVS -x '*~' -x '.*' -x 'obj-*' srtp-ws/include/srtp.h srtp/include/srtp.h 2 --- srtp-ws/include/srtp.h 2009-04-22 19:06:22.000000000 -0400 17 diff -purN -x CVS -x '*~' -x '.*' -x 'obj-*' srtp-ws/include/srtp_priv.h srtp/include/srtp_priv.h 18 --- srtp-ws/include/srtp_priv.h 2007-06-15 14:17:40.000000000 -0400 28 diff -purN -x CVS -x '*~' -x '.*' -x 'obj-*' srtp-ws/srtp/srtp.c srtp/srtp/srtp.c 29 --- srtp-ws/srtp/srtp.c 2009-04-22 19:18:43.000000000 -0400 65 diff -purN -x CVS -x '*~' -x '.*' -x 'obj-*' srtp-ws/test/dtls_srtp_driver.c srtp/test/dtls_srtp_dr… 66 --- srtp-ws/test/dtls_srtp_driver.c 2009-04-23 15:50:48.000000000 -0400 76 diff -purN -x CVS -x '*~' -x '.*' -x 'obj-*' srtp-ws/test/rtpw.c srtp/test/rtpw.c 77 --- srtp-ws/test/rtpw.c 2009-04-22 19:16:52.000000000 -0400 [all …]
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/ |
D | PythonTarget.java | 115 String ws = ""; in postProcessAction() local 117 ws += " "; in postProcessAction() 119 text = ws + text; in postProcessAction() 133 String ws = ""; in postProcessAction() local 135 ws += " "; in postProcessAction() 137 nChunks.add(ws); in postProcessAction()
|
/external/stlport/test/unit/ |
D | iostream_test.cpp | 46 istr >> ws; in manipulators() 55 istr >> ws; in manipulators() 65 istr >> ws; in manipulators() 74 istr >> ws; in manipulators()
|
/external/webkit/Source/WebCore/plugins/gtk/ |
D | PluginViewGtk.cpp | 834 NPSetWindowCallbackStruct* ws = new NPSetWindowCallbackStruct(); in platformStart() local 835 ws->type = 0; in platformStart() 846 ws->display = GDK_WINDOW_XDISPLAY(window); in platformStart() 847 ws->visual = GDK_VISUAL_XVISUAL(gdk_window_get_visual(window)); in platformStart() 848 ws->depth = gdk_visual_get_depth(gdk_window_get_visual(window)); in platformStart() 849 ws->colormap = XCreateColormap(ws->display, GDK_ROOT_WINDOW(), ws->visual, AllocNone); in platformStart() 852 ws->display = GTK_XTBIN(platformPluginWidget())->xtdisplay; in platformStart() 853 ws->visual = GTK_XTBIN(platformPluginWidget())->xtclient.xtvisual; in platformStart() 854 ws->depth = GTK_XTBIN(platformPluginWidget())->xtclient.xtdepth; in platformStart() 855 ws->colormap = GTK_XTBIN(platformPluginWidget())->xtclient.xtcolormap; in platformStart() [all …]
|
/external/valgrind/main/VEX/orig_amd64/ |
D | SortedToOrig.hs | 15 = let ws = words s0 function 16 bytes = head ws 17 rest = unwords (tail ws)
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
D | Strip.java | 225 String ws = after.getText(); in killTrailingNewline() local 226 if ( ws.startsWith("\n") ) { in killTrailingNewline() 228 if ( ws.length()>1 ) { in killTrailingNewline() 229 int space = ws.indexOf(' '); in killTrailingNewline() 230 int tab = ws.indexOf('\t'); in killTrailingNewline() 231 if ( ws.startsWith("\n") && in killTrailingNewline() 237 ws = ws.replaceAll("\n", ""); in killTrailingNewline() 238 tokens.replace(after.getTokenIndex(), ws); in killTrailingNewline() local
|
/external/mksh/src/ |
D | lex.c | 170 statep->ls_start = Xsavepos(ws, wp); \ 178 wp = Xrestpos(ws, wp, statep->ls_start); \ 201 XString ws; /* expandable output word */ in yylex() local 212 Xinit(ws, wp, 64, ATEMP); in yylex() 265 Xcheck(ws, wp); in yylex() 287 if (is_wdvarname(Xstring(ws, wp), false)) { in yylex() 294 Xcheck(ws, wp); in yylex() 372 Xcheck(ws, wp); in yylex() 399 XcheckN(ws, wp, cz); in yylex() 407 wp = get_brace_var(&ws, wp); in yylex() [all …]
|
/external/strace/ |
D | term.c | 192 struct winsize ws; in term_ioctl() local 297 if (!verbose(tcp) || umove(tcp, arg, &ws) < 0) in term_ioctl() 300 ws.ws_row, ws.ws_col, ws.ws_xpixel, ws.ws_ypixel); in term_ioctl()
|
/external/openssl/ssl/ |
D | s2_enc.c | 66 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/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/ |
D | pywebsocket.conf | 37 PythonOption mod_pywebsocket.handler_scan /var/www/ws 39 <Location /ws>
|