/external/libxml2/include/libxml/ |
xmlschemastypes.h | 60 xmlSchemaWhitespaceValueType ws); 105 xmlSchemaWhitespaceValueType ws); 117 xmlSchemaWhitespaceValueType ws);
|
/external/mesa3d/src/gallium/drivers/radeonsi/ |
radeonsi_pipe.h | 66 struct radeon_winsys *ws; member in struct:r600_screen 120 struct radeon_winsys *ws; member in struct:r600_context 273 return rscreen->ws->buffer_get_virtual_address(rresource->cs_buf);
|
/external/mesa3d/src/gallium/winsys/sw/gdi/ |
gdi_sw_winsys.c | 73 gdi_sw_is_displaytarget_format_supported( struct sw_winsys *ws, 92 gdi_sw_displaytarget_map(struct sw_winsys *ws, 103 gdi_sw_displaytarget_unmap(struct sw_winsys *ws,
|
/external/srtp/crypto/replay/ |
rdbx.c | 191 * rdbx_init(&r, ws) initializes the rdbx_t pointed to by r with window size ws 195 rdbx_init(rdbx_t *rdbx, unsigned long ws) { 196 if (ws == 0) 199 if (bitvector_alloc(&rdbx->bitmask, ws) != 0)
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
SignalTileView.java | 74 int ws = MeasureSpec.makeMeasureSpec(mIconFrame.getMeasuredHeight(), MeasureSpec.AT_MOST); local 75 mIn.measure(ws, hs); 76 mOut.measure(ws, hs);
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
i915_texstate.c | 285 GLenum ws = sampler->WrapS; local 307 (ws == GL_CLAMP || 310 ws == GL_CLAMP_TO_BORDER || 318 (((ws != GL_CLAMP) && (ws != GL_CLAMP_TO_EDGE)) || 347 ((translate_wrap_mode(ws) << SS3_TCX_ADDR_MODE_SHIFT) |
|
/system/extras/libpagemap/ |
pm_process.c | 181 pm_memusage_t ws, map_ws; local 191 pm_memusage_zero(&ws); 192 pm_memusage_pswap_init_handle(&ws, ws_out->p_swap); 201 pm_memusage_add(&ws, &map_ws); 204 memcpy(ws_out, &ws, sizeof(ws));
|
/external/mesa3d/src/gallium/targets/egl-static/ |
egl_pipe.c | 202 egl_pipe_create_swrast_screen(struct sw_winsys *ws) 206 screen = sw_screen_create(ws);
|
/frameworks/base/location/lib/java/com/android/location/provider/ |
LocationProviderBase.java | 88 public void setRequest(ProviderRequest request, WorkSource ws) { 89 onSetRequest(new ProviderRequestUnbundled(request), ws);
|
/system/webservd/webservd/ |
protocol_handler.cc | 375 fd_set ws; local 379 FD_ZERO(&ws); 381 CHECK_EQ(MHD_YES, MHD_get_fdset(server_, &rs, &ws, &es, &max_fd)); 385 if (FD_ISSET(fd, &rs) || FD_ISSET(fd, &ws)) { 386 watcher->Watch(FD_ISSET(fd, &rs), FD_ISSET(fd, &ws)); 388 FD_CLR(fd, &ws); 401 if (FD_ISSET(fd, &rs) || FD_ISSET(fd, &ws)) { 405 watcher->Watch(FD_ISSET(fd, &rs), FD_ISSET(fd, &ws));
|
/libcore/luni/src/main/java/java/util/concurrent/locks/ |
AbstractQueuedLongSynchronizer.java | 181 int ws = node.waitStatus; local 182 if (ws < 0) 183 node.compareAndSetWaitStatus(ws, 0); 222 int ws = h.waitStatus; local 223 if (ws == Node.SIGNAL) { 228 else if (ws == 0 && 307 int ws; local 309 ((ws = pred.waitStatus) == Node.SIGNAL || 310 (ws <= 0 && pred.compareAndSetWaitStatus(ws, Node.SIGNAL))) & 333 int ws = pred.waitStatus; local 1211 int ws = p.waitStatus; local [all...] |
AbstractQueuedSynchronizer.java | 648 int ws = node.waitStatus; local 649 if (ws < 0) 650 node.compareAndSetWaitStatus(ws, 0); 689 int ws = h.waitStatus; local 690 if (ws == Node.SIGNAL) { 695 else if (ws == 0 && 774 int ws; local 776 ((ws = pred.waitStatus) == Node.SIGNAL || 777 (ws <= 0 && pred.compareAndSetWaitStatus(ws, Node.SIGNAL))) & 800 int ws = pred.waitStatus; local 1682 int ws = p.waitStatus; local [all...] |
/external/freetype/src/autofit/ |
afglobal.h | 47 #define STYLE( s, S, d, ws, sc, ss, c ) \
|
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/autofit/ |
afglobal.h | 47 #define STYLE( s, S, d, ws, sc, ss, c ) \
|
/external/libmicrohttpd/src/testcurl/ |
perf_get_concurrent.c | 288 fd_set ws; local 305 FD_ZERO (&ws); 307 if (MHD_YES != MHD_get_fdset (d, &rs, &ws, &es, &max)) 316 if (-1 == select (max + 1, &rs, &ws, &es, &tv))
|
test_get_chunked.c | 292 fd_set ws; local 342 FD_ZERO (&ws); 345 mret = curl_multi_fdset (multi, &rs, &ws, &es, &max); 354 if (MHD_YES != MHD_get_fdset (d, &rs, &ws, &es, &max)) 364 select (max + 1, &rs, &ws, &es, &tv);
|
/external/okhttp/okhttp-ws-tests/src/test/java/com/squareup/okhttp/ws/ |
WebSocketRecorder.java | 16 package com.squareup.okhttp.ws; 19 import com.squareup.okhttp.internal.ws.WebSocketReader; 27 import static com.squareup.okhttp.ws.WebSocket.PayloadType.BINARY; 28 import static com.squareup.okhttp.ws.WebSocket.PayloadType.TEXT;
|
/external/ltrace/ |
options.c | 170 struct winsize ws; local 182 } else if (ioctl(1, TIOCGWINSZ, &ws) != -1 && ws.ws_col > 0) { 183 options.align = ws.ws_col * 5 / 8; 184 } else if (ioctl(2, TIOCGWINSZ, &ws) != -1 && ws.ws_col > 0) { 185 options.align = ws.ws_col * 5 / 8;
|
/external/mesa3d/src/gallium/state_trackers/egl/fbdev/ |
native_fbdev.c | 423 struct sw_winsys *ws; local 425 ws = fbdev_create_sw_winsys(fbdpy->fd); 426 if (!ws) 429 fbdpy->base.screen = fbdpy->event_handler->new_sw_screen(&fbdpy->base, ws); 431 if (ws->destroy) 432 ws->destroy(ws);
|
/external/libmicrohttpd/src/microspdy/ |
daemon.c | 480 fd_set ws; local 489 FD_ZERO (&ws); 492 max = SPDYF_get_fdset(daemon,&rs,&ws,&es, true); 494 num_ready = select (max + 1, &rs, &ws, &es, &timeout); 526 if (FD_ISSET (ds, &ws)){
|
/external/libmicrohttpd/src/testzzuf/ |
test_post.c | 262 fd_set ws; local 327 FD_ZERO (&ws); 330 mret = curl_multi_fdset (multi, &rs, &ws, &es, &max); 340 if (MHD_YES != MHD_get_fdset (d, &rs, &ws, &es, &max)) 351 select (max + 1, &rs, &ws, &es, &tv);
|
test_post_form.c | 278 fd_set ws; local 342 FD_ZERO (&ws); 345 mret = curl_multi_fdset (multi, &rs, &ws, &es, &max); 356 if (MHD_YES != MHD_get_fdset (d, &rs, &ws, &es, &max)) 368 select (max + 1, &rs, &ws, &es, &tv);
|
test_put.c | 230 fd_set ws; local 296 FD_ZERO (&ws); 299 mret = curl_multi_fdset (multi, &rs, &ws, &es, &max); 309 if (MHD_YES != MHD_get_fdset (d, &rs, &ws, &es, &max)) 320 select (max + 1, &rs, &ws, &es, &tv);
|
test_put_chunked.c | 242 fd_set ws; local 307 FD_ZERO (&ws); 310 mret = curl_multi_fdset (multi, &rs, &ws, &es, &max); 320 if (MHD_YES != MHD_get_fdset (d, &rs, &ws, &es, &max)) 331 select (max + 1, &rs, &ws, &es, &tv);
|
test_put_large.c | 245 fd_set ws; local 314 FD_ZERO (&ws); 317 mret = curl_multi_fdset (multi, &rs, &ws, &es, &max); 327 if (MHD_YES != MHD_get_fdset (d, &rs, &ws, &es, &max)) 338 select (max + 1, &rs, &ws, &es, &tv);
|