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

1 2

  /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 155 pm_memusage_t ws, map_ws; local
165 pm_memusage_zero(&ws);
170 pm_memusage_add(&ws, &map_ws);
173 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;
  /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
  /frameworks/base/libs/ui/
Overlay.cpp 155 uint32_t w, uint32_t h, int32_t f, uint32_t ws, uint32_t hs)
157 mWidth(w), mHeight(h), mFormat(f), mWidthStride(ws), mHeightStride(hs),
177 uint32_t ws = data.readInt32(); local
187 result->mWidthStride = ws;
  /ndk/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...]
  /system/extras/procrank/
procrank.c 58 int ws; local
65 ws = WS_OFF;
72 if (!strcmp(argv[arg], "-w")) { ws = WS_ONLY; continue; }
73 if (!strcmp(argv[arg], "-W")) { ws = WS_RESET; continue; }
109 switch (ws) {
129 if (ws == WS_RESET) exit(0);
143 if (ws)
158 if (ws)
  /external/qemu/
curses.c 121 } ws; local
124 if (ioctl(1, TIOCGWINSZ, &ws) == -1)
127 resize_term(ws.ws_row, ws.ws_col);
  /frameworks/base/media/libstagefright/
HTTPStream.cpp 79 fd_set rs, ws; local
81 FD_ZERO(&ws);
83 FD_SET(s, &ws);
89 int nfds = ::select(s + 1, &rs, &ws, NULL, &tv);
100 if (FD_ISSET(s, &ws) && !FD_ISSET(s, &rs)) {
105 if (FD_ISSET(s, &rs) || FD_ISSET(s, &ws)) {
137 fd_set rs, ws, es; local
139 FD_ZERO(&ws);
141 FD_SET(s, sendData ? &ws : &rs);
151 sendData ? &ws : NULL
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
MultiApkExportAction.java 169 IWorkspace ws = ResourcesPlugin.getWorkspace(); local
170 IWorkspaceRoot wsRoot = ws.getRoot();
  /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;
  /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/WebCore/plugins/gtk/
PluginViewGtk.cpp 859 NPSetWindowCallbackStruct* ws = new NPSetWindowCallbackStruct(); local
860 ws->type = 0;
869 ws->display = GDK_WINDOW_XDISPLAY(platformPluginWidget()->window);
870 ws->visual = GDK_VISUAL_XVISUAL(gdk_drawable_get_visual(GDK_DRAWABLE(platformPluginWidget()->window)));
871 ws->depth = gdk_drawable_get_visual(GDK_DRAWABLE(platformPluginWidget()->window))->depth;
872 ws->colormap = GDK_COLORMAP_XCOLORMAP(gdk_drawable_get_colormap(GDK_DRAWABLE(platformPluginWidget()->window)));
875 ws->display = GTK_XTBIN(platformPluginWidget())->xtdisplay;
876 ws->visual = GTK_XTBIN(platformPluginWidget())->xtclient.xtvisual;
877 ws->depth = GTK_XTBIN(platformPluginWidget())->xtclient.xtdepth;
878 ws->colormap = GTK_XTBIN(platformPluginWidget())->xtclient.xtcolormap
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
GlobalProjectMonitor.java 267 * @param ws The current workspace.
270 public static GlobalProjectMonitor startMonitoring(IWorkspace ws) {
272 ws.addResourceChangeListener(sThis.mResourceChangeListener,
274 sThis.mWorkspace = ws;
281 * @param ws The current workspace.
283 public static void stopMonitoring(IWorkspace ws) {
285 ws.removeResourceChangeListener(sThis.mResourceChangeListener);
  /external/chromium/third_party/icu/source/test/cintltst/
custrtrn.c 1371 wchar_t ws[100]; local
    [all...]

Completed in 630 milliseconds

1 2