HomeSort by relevance Sort by last modified time
    Searched defs:ws (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/stlport/test/unit/
iostream_test.cpp 46 istr >> ws; local
55 istr >> ws; local
65 istr >> ws; local
74 istr >> ws; local
  /ndk/tests/device/test-gnustl-full/unit/
iostream_test.cpp 46 istr >> ws; local
55 istr >> ws; local
65 istr >> ws; local
74 istr >> ws; local
  /ndk/tests/device/test-stlport/unit/
iostream_test.cpp 46 istr >> ws; local
55 istr >> ws; local
65 istr >> ws; local
74 istr >> ws; local
  /external/embunit/src/
TestCase.c 55 TestCase* ws = self_; /*push*/ local
60 self_ = ws; /*pop*/
  /external/strace/
term.c 195 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);
  /system/extras/libpagemap/
pm_map.c 74 pm_memusage_t ws; local
83 pm_memusage_zero(&ws);
101 ws.vss += map->proc->ker->pagesize;
102 ws.rss += (count >= 1) ? (map->proc->ker->pagesize) : (0);
103 ws.pss += (count >= 1) ? (map->proc->ker->pagesize / count) : (0);
104 ws.uss += (count == 1) ? (map->proc->ker->pagesize) : (0);
107 memcpy(ws_out, &ws, sizeof(ws));
pm_process.c 161 pm_memusage_t ws, map_ws; local
171 pm_memusage_zero(&ws);
176 pm_memusage_add(&ws, &map_ws);
179 memcpy(ws_out, &ws, sizeof(ws));
  /external/openssl/ssl/
s2_enc.c 66 EVP_CIPHER_CTX *rs,*ws; local
95 ws= s->enc_write_ctx;
96 EVP_CIPHER_CTX_init(ws);
106 EVP_EncryptInit_ex(ws,c,NULL,&(s->s2->key_material[(client)?num:0]),
  /external/srec/srec/cfront/
wav_acc.c 75 void reset_sig_check(wave_stats *ws)
82 ASSERT(ws);
84 ws->sum = 0;
85 ws->sum2 = 0;
86 ws->sumsqu = 0;
87 ws->sumsqu2 = 0;
88 ws->nsam = 0;
89 ws->highclip = 0;
90 ws->lowclip = 0;
93 ws->bithist[ii] = 0
180 wave_stats *ws; local
    [all...]
ca_wave.c 210 wave_stats *ws; local
214 ws = &hWave->data.stats;
215 get_sig_check(ws, &nsam, &pclowclip, &pchighclip, &dc_offset, &amp,
218 if ((pclowclip + pchighclip) > ws->max_per10000_clip)
221 if (abs(dc_offset) > ws->max_dc_offset) *dcoffset = ESR_TRUE;
223 if (pc5 >= ws->high_noise_level_bit) *highnoise = ESR_TRUE;
225 if (pc95 < ws->low_speech_level_bit) *quietspeech = ESR_TRUE;
227 if (nsam < ws->min_samples) *too_few_samples = ESR_TRUE;
  /packages/apps/Browser/src/com/android/browser/preferences/
InvertedContrastPreview.java 79 WebSettings ws = mWebView.getSettings();
81 ws.setProperty(WebViewProperties.gfxInvertedScreen,
83 ws.setProperty(WebViewProperties.gfxInvertedScreenContrast,
  /external/chromium/third_party/libjingle/source/talk/base/
win32.h 61 wchar_t* ws = STACK_ARRAY(wchar_t, len16); local
62 ::MultiByteToWideChar(CP_UTF8, 0, utf8, len, ws, len16);
63 return std::wstring(ws, len16);
  /external/dropbear/
cli-chansession.c 241 struct winsize ws; local
243 if (ioctl(STDIN_FILENO, TIOCGWINSZ, &ws) < 0) {
245 ws.ws_row = 25;
246 ws.ws_col = 80;
247 ws.ws_xpixel = 0;
248 ws.ws_ypixel = 0;
251 buf_putint(ses.writepayload, ws.ws_col); /* Cols */
252 buf_putint(ses.writepayload, ws.ws_row); /* Rows */
253 buf_putint(ses.writepayload, ws.ws_xpixel); /* Width */
254 buf_putint(ses.writepayload, ws.ws_ypixel); /* Height *
    [all...]
  /external/e2fsprogs/ext2ed/
win.c 190 struct winsize ws; local
194 ioctl(1, TIOCGWINSZ, &ws);
200 if (ioctl(1, TIOCGWINSZ, &ws) == 0) {
201 if (ws.ws_row < min_lines)
202 ws.ws_row = min_lines;
203 if ((ws.ws_row != LINES) || (ws.ws_col != COLS)) {
207 resizeterm(ws.ws_row, ws.ws_col);
  /external/stlport/stlport/stl/
_istream.h 282 ws(basic_istream<_CharT, _Traits>& __istr) { function
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_istream.h 282 ws(basic_istream<_CharT, _Traits>& __istr) { function
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_istream.h 282 ws(basic_istream<_CharT, _Traits>& __istr) { function
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_istream.h 282 ws(basic_istream<_CharT, _Traits>& __istr) { function
  /system/extras/procmem/
procmem.c 65 int ws; local
82 ws = WS_OFF;
86 if (!strcmp(argv[i], "-w")) { ws = WS_ONLY; continue; }
87 if (!strcmp(argv[i], "-W")) { ws = WS_RESET; continue; }
118 if (ws == WS_RESET) {
141 if (ws == WS_ONLY) {
168 if (ws == WS_ONLY)
209 if ((ws != WS_ONLY) || (flags & PM_PAGE_REFERENCED)) {
244 if (ws == WS_ONLY) {
271 if (ws == WS_ONLY)
    [all...]
  /external/qemu/
curses.c 121 } ws; local
124 if (ioctl(1, TIOCGWINSZ, &ws) == -1)
127 resize_term(ws.ws_row, ws.ws_col);
  /system/core/liblinenoise/
linenoise.c 164 struct winsize ws; local
166 if (ioctl(1, TIOCGWINSZ, &ws) == -1) return 4096;
167 if (ws.ws_col == 0) {
170 return ws.ws_col;
  /system/extras/procrank/
procrank.c 131 int ws; local
138 ws = WS_OFF;
145 if (!strcmp(argv[arg], "-w")) { ws = WS_ONLY; continue; }
146 if (!strcmp(argv[arg], "-W")) { ws = WS_RESET; continue; }
187 switch (ws) {
208 if (ws == WS_RESET) exit(0);
222 if (ws)
243 if (ws)
266 if (ws) {
  /external/clang/test/CodeGen/
struct.c 108 } ws; variable in typeref:struct:_w
  /external/iproute2/lib/
utils.c 754 static const char ws[] = " \t\r\n"; local
758 for (cp = strtok(line, ws); cp; cp = strtok(NULL, ws)) {
  /external/webkit/Source/WebCore/plugins/gtk/
PluginViewGtk.cpp 834 NPSetWindowCallbackStruct* ws = new NPSetWindowCallbackStruct(); local
835 ws->type = 0;
846 ws->display = GDK_WINDOW_XDISPLAY(window);
847 ws->visual = GDK_VISUAL_XVISUAL(gdk_window_get_visual(window));
848 ws->depth = gdk_visual_get_depth(gdk_window_get_visual(window));
849 ws->colormap = XCreateColormap(ws->display, GDK_ROOT_WINDOW(), ws->visual, AllocNone);
852 ws->display = GTK_XTBIN(platformPluginWidget())->xtdisplay;
853 ws->visual = GTK_XTBIN(platformPluginWidget())->xtclient.xtvisual
    [all...]

Completed in 1276 milliseconds

1 2 3