/external/mesa3d/src/gallium/drivers/nvc0/ |
nvc0_context.h | 152 struct pipe_clip_state clip; member in struct:nvc0_context
|
/external/mesa3d/src/gallium/state_trackers/xorg/ |
xorg_driver.c | 583 drmModeClip *clip = alloca(num_cliprects * sizeof(drmModeClip)); local 589 clip[i].x1 = rect->x1; 590 clip[i].y1 = rect->y1; 591 clip[i].x2 = rect->x2; 592 clip[i].y2 = rect->y2; 596 ret = drmModeDirtyFB(ms->fd, ms->fb_id, clip, num_cliprects); [all...] |
/external/mesa3d/src/mesa/state_tracker/ |
st_context.h | 105 struct pipe_clip_state clip; member in struct:st_context::__anon32587
|
/external/pdfium/core/src/fxge/agg/agg23/ |
agg_basics.h | 85 bool clip(const self_type& r) function in struct:agg::rect_base
|
/external/pdfium/fpdfsdk/src/ |
fpdfview.cpp | 497 // get clip region
816 FX_RECT clip;
local 817 clip.left = start_x;
818 clip.right = start_x + size_x;
819 clip.top = start_y;
820 clip.bottom = start_y + size_y;
822 pContext->m_pDevice->SetClip_Rect(&clip);
|
/external/qemu/audio/ |
audio_int.h | 77 f_sample *clip; member in struct:HWVoiceOut 135 f_sample *clip; member in struct:SWVoiceIn
|
/external/skia/samplecode/ |
SampleAll.cpp | 318 SkRect clip; local 319 clip.set(0, 0, SkIntToScalar(160), SkIntToScalar(160)); 322 canvas->clipRect(clip); 325 if (clip.fRight < SkIntToScalar(320)) 326 clip.offset(SkIntToScalar(160), 0); 327 else if (clip.fBottom < SkIntToScalar(480)) 328 clip.offset(-SkIntToScalar(320), SkIntToScalar(160)); 401 // !!! draw through a clip 404 SkRect clip = {0, 0, SkIntToScalar(320), SkIntToScalar(120)}; local 405 canvas->clipRect(clip); [all...] |
/external/skia/src/core/ |
SkScalerContext.cpp | 607 SkRasterClip clip; local 608 clip.setRect(SkIRect::MakeWH(dstW, dstH)); 625 draw.fRC = &clip; 626 draw.fClip = &clip.bwRgn(); [all...] |
/external/skia/src/gpu/ |
GrDrawTarget.cpp | 127 void GrDrawTarget::setClip(const GrClipData* clip) { 128 clipWillBeSet(clip); 129 fClip = clip; 422 const GrClipData* clip = this->getClip(); local 423 clip->getConservativeBounds(rt, ©Rect); 895 // clip the left edge to src and dst bounds, adjusting dstPoint if necessary 905 // clip the top edge to src and dst bounds, adjusting dstPoint if necessary 915 // clip the right edge to the src and dst bounds. 923 // clip the bottom edge to the src and dst bounds. [all...] |
/external/tcpdump/ |
print-rx.c | 636 u_int32_t clip = ip->ip_dst.s_addr; local 645 rxent->client.s_addr == clip && [all...] |
/external/webp/src/enc/ |
analysis.c | 72 static WEBP_INLINE int clip(int v, int m, int M) { function 94 enc->dqm_[n].alpha_ = clip(alpha, -127, 127); 95 enc->dqm_[n].beta_ = clip(beta, 0, 255); 110 return clip(alpha, 0, MAX_ALPHA);
|
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/renderer/ |
PdfManipulationService.java | 151 Rect clip = new Rect(); local 152 clip.left = (int) (paddingLeftPts * displayScale); 153 clip.top = (int) (paddingTopPts * displayScale); 154 clip.right = (int) (bitmapWidth - paddingRightPts * displayScale); 155 clip.bottom = (int) (bitmapHeight - paddingBottomPts * displayScale); 162 page.render(bitmap, clip, matrix, PdfRenderer.Page.RENDER_MODE_FOR_DISPLAY); 347 Rect clip = new Rect(mediaBox); local 348 clip.left += paddingLeftPts; 349 clip.top += paddingTopPts; 350 clip.right -= paddingRightPts [all...] |
/frameworks/base/services/core/java/com/android/server/clipboard/ |
ClipboardService.java | 160 public void setPrimaryClip(ClipData clip, String callingPackage) { 162 if (clip != null && clip.getItemCount() <= 0) { 170 checkDataOwnerLocked(clip, callingUid); 174 setPrimaryClipInternal(clipboard, clip); 186 // Copy clip data to related users if allowed. If disallowed, then remove 187 // primary clip in related users to prevent pasting stale content. 189 clip = null; 191 clip.fixUrisLight(userId); 196 setPrimaryClipInternal(getClipboard(id), clip); local [all...] |
/cts/hostsidetests/appsecurity/test-apps/UsePermissionDiffCert/src/com/android/cts/usespermissiondiffcertapp/ |
AccessPermissionWithDiffSigTest.java | 86 private void assertReadingClipNotAllowed(ClipData clip, String msg) { 87 for (int i=0; i<clip.getItemCount(); i++) { 88 ClipData.Item item = clip.getItemAt(i); 176 private void assertWritingClipNotAllowed(ClipData clip, String msg) { 177 for (int i=0; i<clip.getItemCount(); i++) { 178 ClipData.Item item = clip.getItemAt(i); 277 ClipData clip = new ClipData("foo", new String[] { "foo/bar" }, local 279 clip.addItem(new ClipData.Item(grantClip2Uri)); 280 // Intents in the ClipData should allow their data: and clip URIs 283 clip.addItem(new ClipData.Item(new Intent(Intent.ACTION_VIEW, grantClip3Uri))) 1256 final ClipData clip = makeSingleClipData(target); local 1390 final ClipData clip = makeSingleClipData(target); local 1434 final ClipData clip = makeSingleClipData(target); local 1486 final ClipData clip = makeSingleClipData(target); local 1555 final ClipData clip = makeSingleClipData(target); local [all...] |
/cts/tests/tests/graphics/src/android/graphics/cts/ |
RegionTest.java | 1391 Region clip = new Region(0, 0, 10, 10); local 1426 Region clip = new Region(); local [all...] |
/external/bluetooth/bluedroid/bta/ag/ |
bta_ag_int.h | 32 /* Send RING & CLIP in one AT cmd */ 251 char clip[BTA_AG_AT_MAX_LEN+1]; /* number string used for CLIP */ member in struct:__anon5048 278 BOOLEAN clip_enabled; /* set to TRUE if HF enables CLIP reporting */
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
GraphicsContext.h | 87 // so it should be avoided. Use the corresponding draw/matrix/clip methods instead. 313 void clip(const IntRect& rect) { clipRect(rect); } function in class:blink::GraphicsContext 314 void clip(const FloatRect& rect) { clipRect(rect); } function in class:blink::GraphicsContext 322 // This clip function is used only by <canvas> code. It allows
|
/external/chromium_org/third_party/libwebp/dsp/ |
dec.c | 168 const uint8_t* const clip = clip0 + dst[-1]; local 171 dst[x] = clip[top[x]];
|
enc.c | 234 const uint8_t* const clip = clip1 + 255 - left[-1]; local 236 const uint8_t* const clip_table = clip + left[y]; 472 const uint8_t* const clip = clip1 + 255 - top[-1]; local 474 const uint8_t* const clip_table = clip + top[-2 - y];
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/cso_cache/ |
cso_context.c | 112 struct pipe_clip_state clip; member in struct:cso_context 774 /* clip state */ 792 const struct pipe_clip_state *clip) 794 if (clip_state_cmp(&ctx->clip, clip)) { 795 clip_state_cpy(&ctx->clip, clip); 796 ctx->pipe->set_clip_state(ctx->pipe, clip); 803 clip_state_cpy(&ctx->clip_saved, &ctx->clip); 809 if (clip_state_cmp(&ctx->clip, &ctx->clip_saved)) [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/ |
draw_private.h | 79 float clip[4]; member in struct:vertex_header 109 struct draw_stage *clip; member in struct:draw_context::__anon18330 219 boolean force_passthrough; /**< never clip or shade */ 293 /* Clip derived state:
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/ |
r300_emit.c | 71 struct r300_clip_state* clip = (struct r300_clip_state*)state; local 74 WRITE_CS_TABLE(clip->cb, size); [all...] |
r300_state.c | 544 struct r300_clip_state *clip = local 549 BEGIN_CB(clip->cb, r300->clip_state.size); [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/ |
xorg_xv.c | 86 RegionRec clip; member in struct:xorg_xv_port_priv 104 REGION_EMPTY(pScrn->pScreen, &priv->clip); 601 /* Clip */ 651 REGION_NULL(pScreen, &priv->clip);
|
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
s_span.c | 694 * Clip a pixel span to the current buffer/window boundaries: 748 /* Clip to right */ 754 /* Clip to the left */ 762 /* Clip 'leftClip' pixels from the left side. 1538 GLint clip = x + count - rb->Width; local [all...] |