Searched defs:box (Results 26 - 50 of 255) sorted by relevance

1234567891011

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
H A Dr300_transfer.c59 tex, transfer->level, &transfer->box);
69 u_box_origin_2d(transfer->box.width, transfer->box.height, &src_box);
72 transfer->box.x, transfer->box.y, transfer->box.z,
84 const struct pipe_box *box)
107 trans->transfer.box = *box;
122 base.width0 = box
80 r300_texture_get_transfer(struct pipe_context *ctx, struct pipe_resource *texture, unsigned level, unsigned usage, const struct pipe_box *box) argument
[all...]
H A Dr300_screen_buffer.c72 const struct pipe_box *box)
81 transfer->box = *box;
111 return (uint8_t *) rbuf->malloced_buffer + transfer->box.x;
125 return map + transfer->box.x;
68 r300_buffer_get_transfer(struct pipe_context *context, struct pipe_resource *resource, unsigned level, unsigned usage, const struct pipe_box *box) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_resource_buffer.c70 const struct pipe_box *box)
85 transfer->box = *box;
220 map += transfer->box.x;
230 const struct pipe_box *box)
235 unsigned offset = transfer->box.x + box->x;
236 unsigned length = box->width;
66 svga_buffer_get_transfer(struct pipe_context *pipe, struct pipe_resource *resource, unsigned level, unsigned usage, const struct pipe_box *box) argument
228 svga_buffer_transfer_flush_region( struct pipe_context *pipe, struct pipe_transfer *transfer, const struct pipe_box *box) argument
/external/chromium_org/ui/compositor/
H A Dtransform_animation_curve_adapter.cc56 const gfx::BoxF& box,
121 const gfx::BoxF& box,
55 AnimatedBoundsForBox( const gfx::BoxF& box, gfx::BoxF* bounds) const argument
120 AnimatedBoundsForBox( const gfx::BoxF& box, gfx::BoxF* bounds) const argument
/external/chromium_org/ui/gfx/test/
H A Dgfx_util.cc93 void PrintTo(const BoxF& box, ::std::ostream* os) { argument
94 *os << box.ToString();
/external/clang/test/SemaCXX/
H A Dwarn-unused-value.cpp13 Box* box = new Box; local
14 box->i; // expected-warning {{expression result unused}}
15 box->j; // expected-warning {{expression result unused}}
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_resource.c31 const struct pipe_box *box)
34 return ur->vtbl->get_transfer(context, resource, level, usage, box);
53 const struct pipe_box *box)
56 ur->vtbl->transfer_flush_region(pipe, transfer, box);
70 const struct pipe_box *box,
80 box,
27 u_get_transfer_vtbl(struct pipe_context *context, struct pipe_resource *resource, unsigned level, unsigned usage, const struct pipe_box *box) argument
51 u_transfer_flush_region_vtbl( struct pipe_context *pipe, struct pipe_transfer *transfer, const struct pipe_box *box) argument
66 u_transfer_inline_write_vtbl( struct pipe_context *pipe, struct pipe_resource *resource, unsigned level, unsigned usage, const struct pipe_box *box, const void *data, unsigned stride, unsigned layer_stride) argument
H A Du_transfer.c14 const struct pipe_box *box,
28 if (box->x == 0 && box->width == resource->width0) {
38 box );
47 assert(box->height == 1);
48 assert(box->depth == 1);
50 memcpy(map, data, box->width);
56 for (i = 0; i < box->depth; i++) {
61 box->width,
62 box
10 u_default_transfer_inline_write( struct pipe_context *pipe, struct pipe_resource *resource, unsigned level, unsigned usage, const struct pipe_box *box, const void *data, unsigned stride, unsigned layer_stride) argument
89 u_default_transfer_flush_region( struct pipe_context *pipe, struct pipe_transfer *transfer, const struct pipe_box *box) argument
97 u_default_get_transfer(struct pipe_context *context, struct pipe_resource *resource, unsigned level, unsigned usage, const struct pipe_box *box) argument
[all...]
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_resource_buffer.c68 const struct pipe_box *box)
79 transfer->box = *box;
100 return buffer->data + transfer->box.x;
109 const struct pipe_box *box,
116 memcpy(buffer->data + box->x,
118 box->width);
64 i915_get_transfer(struct pipe_context *pipe, struct pipe_resource *resource, unsigned level, unsigned usage, const struct pipe_box *box) argument
105 i915_buffer_transfer_inline_write( struct pipe_context *rm_ctx, struct pipe_resource *resource, unsigned level, unsigned usage, const struct pipe_box *box, const void *data, unsigned stride, unsigned layer_stride) argument
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_transfer.c59 tex, transfer->level, &transfer->box);
69 u_box_origin_2d(transfer->box.width, transfer->box.height, &src_box);
72 transfer->box.x, transfer->box.y, transfer->box.z,
84 const struct pipe_box *box)
107 trans->transfer.box = *box;
122 base.width0 = box
80 r300_texture_get_transfer(struct pipe_context *ctx, struct pipe_resource *texture, unsigned level, unsigned usage, const struct pipe_box *box) argument
[all...]
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_resource_buffer.c70 const struct pipe_box *box)
85 transfer->box = *box;
220 map += transfer->box.x;
230 const struct pipe_box *box)
235 unsigned offset = transfer->box.x + box->x;
236 unsigned length = box->width;
66 svga_buffer_get_transfer(struct pipe_context *pipe, struct pipe_resource *resource, unsigned level, unsigned usage, const struct pipe_box *box) argument
228 svga_buffer_transfer_flush_region( struct pipe_context *pipe, struct pipe_transfer *transfer, const struct pipe_box *box) argument
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DFreeBox.java36 * A free box. Just a placeholder to enable editing without rewriting the whole file.
97 // It's quite expensive to map a file into the memory. Just do it when the box is larger than a MB.
107 public void addAndReplace(Box box) { argument
108 data.position(l2i(box.getSize()));
110 replacers.add(box);
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimationStack.cpp149 bool AnimationStack::getAnimatedBoundingBox(FloatBox& box, CSSPropertyID property) const argument
151 FloatBox originalBox(box);
164 box.expandTo(expandingBox);
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DImageInputType.cpp202 RenderBox* box = element->renderBox(); local
203 return box ? adjustForAbsoluteZoom(box->contentHeight(), box) : 0;
226 RenderBox* box = element->renderBox(); local
227 return box ? adjustForAbsoluteZoom(box->contentWidth(), box) : 0;
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DSpinButtonElement.cpp77 RenderBox* box = renderBox(); local
78 if (!box) {
91 IntPoint local = roundedIntPoint(box->absoluteToLocal(mouseEvent->absoluteLocation(), UseTransforms));
93 if (box->pixelSnappedBorderBoxRect().contains(local)) {
116 if (box->pixelSnappedBorderBoxRect().contains(local)) {
126 m_upDownState = (local.y() < box->height() / 2) ? Up : Down;
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGInline.cpp59 InlineFlowBox* box = new SVGInlineFlowBox(*this); local
60 box->setHasVirtualLogicalHeight();
61 return box;
115 for (InlineFlowBox* box = firstLineBox(); box; box = box->nextLineBox())
116 quads.append(localToAbsoluteQuad(FloatRect(textBoundingBox.x() + box->x(), textBoundingBox.y() + box->y(), box
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DTextPrompt.js379 // BUG72018: Do not show suggest box if caret is followed by a non-stop character.
409 var box = anchorElement.boxInWindow(window); variable
413 return box;
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/postprocess/
H A Dpp_mlaa.c65 struct pipe_box box; local
67 u_box_2d(0, 0, sizeof(constants), 1, &box);
69 &box, constants, sizeof(constants),
214 struct pipe_box box; local
253 u_box_2d(0, 0, 165, 165, &box);
256 PIPE_TRANSFER_WRITE, &box,
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_upload_mgr.c78 struct pipe_box *box = &upload->transfer->box; local
79 if (upload->offset > box->x) {
82 box->x, upload->offset - box->x);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Dr600_buffer.c44 const struct pipe_box *box)
49 assert(box->x + box->width <= resource->width0);
54 transfer->transfer.box = *box;
138 transfer->box.x % 4 == 0 && transfer->box.width % 4 == 0) {
149 PIPE_USAGE_STAGING, transfer->box.width);
159 return (uint8_t*)data + transfer->box.x;
168 struct pipe_box box; local
40 r600_get_transfer(struct pipe_context *ctx, struct pipe_resource *resource, unsigned level, unsigned usage, const struct pipe_box *box) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
H A Dr600_buffer.c53 const struct pipe_box *box)
61 transfer->box = *box;
83 return (uint8_t*)data + transfer->box.x;
94 const struct pipe_box *box)
49 r600_get_transfer(struct pipe_context *ctx, struct pipe_resource *resource, unsigned level, unsigned usage, const struct pipe_box *box) argument
92 r600_buffer_transfer_flush_region(struct pipe_context *pipe, struct pipe_transfer *transfer, const struct pipe_box *box) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/trace/
H A Dtr_dump_state.c87 void trace_dump_box(const struct pipe_box *box) argument
92 if(!box) {
99 trace_dump_member(uint, box, x);
100 trace_dump_member(uint, box, y);
101 trace_dump_member(uint, box, z);
102 trace_dump_member(uint, box, width);
103 trace_dump_member(uint, box, height);
104 trace_dump_member(uint, box, depth);
585 trace_dump_member(uint, state, box.x);
586 trace_dump_member(uint, state, box
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3d11/
H A Dd3d11.cpp100 pipe_box box; local
103 box.x = pBox->left;
104 box.y = pBox->top;
105 box.z = pBox->front;
106 box.width = pBox->right - pBox->left;
107 box.height = pBox->bottom - pBox->top;
108 box.depth = pBox->back - pBox->front;
112 box.x = box.y = box
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vdpau/
H A Dsurface.c232 struct pipe_box box = { local
239 transfer = pipe->get_transfer(pipe, sv->texture, 0, PIPE_TRANSFER_READ, &box);
254 box.width, box.height, map, transfer->stride, 0, 0);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xa/
H A Dxa_yuv.c118 struct xa_box *box,
144 int x = box->x1;
145 int y = box->y1;
146 int w = box->x2 - box->x1;
147 int h = box->y2 - box->y1;
153 box++;
109 xa_yuv_planar_blit(struct xa_context *r, int src_x, int src_y, int src_w, int src_h, int dst_x, int dst_y, int dst_w, int dst_h, struct xa_box *box, unsigned int num_boxes, const float conversion_matrix[], struct xa_surface *dst, struct xa_surface *yuv[]) argument

Completed in 542 milliseconds

1234567891011