Searched defs:box (Results 1 - 25 of 194) sorted by relevance

12345678

/external/clang/test/CodeGenCXX/
H A Dvirtual-destructor-synthesis.cpp3 struct box { struct
4 virtual ~box();
7 struct pile_box : public box {
8 pile_box(box *);
11 pile_box::pile_box(box *pp)
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_tile.h46 u_clip_tile(uint x, uint y, uint *w, uint *h, const struct pipe_box *box) argument
48 if ((int) x >= box->width)
50 if ((int) y >= box->height)
52 if ((int) (x + *w) > box->width)
53 *w = box->width - x;
54 if ((int) (y + *h) > box->height)
55 *h = box->height - y;
H A Du_box.h8 u_box_1d(unsigned x, unsigned w, struct pipe_box *box) argument
10 box->x = x;
11 box->y = 0;
12 box->z = 0;
13 box->width = w;
14 box->height = 1;
15 box->depth = 1;
19 u_box_2d(unsigned x,unsigned y, unsigned w, unsigned h, struct pipe_box *box) argument
21 box->x = x;
22 box
30 u_box_origin_2d(unsigned w, unsigned h, struct pipe_box *box) argument
41 u_box_2d_zslice(unsigned x, unsigned y, unsigned z, unsigned w, unsigned h, struct pipe_box *box) argument
53 u_box_3d(unsigned x, unsigned y, unsigned z, unsigned w, unsigned h, unsigned d, struct pipe_box *box) argument
74 u_box_clip_2d(struct pipe_box *dst, const struct pipe_box *box, int w, int h) argument
117 u_box_volume_3d(const struct pipe_box *box) argument
[all...]
H A Du_transfer.c13 struct pipe_box box; local
28 u_box_1d(offset, size, &box);
30 map = pipe->transfer_map(pipe, resource, 0, usage, &box, &transfer);
42 const struct pipe_box *box,
63 box, &transfer);
72 box->width,
73 box->height,
74 box->depth,
95 const struct pipe_box *box)
134 const struct pipe_box *box,
38 u_default_texture_subdata(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
93 u_default_transfer_flush_region( struct pipe_context *pipe, struct pipe_transfer *transfer, const struct pipe_box *box) argument
130 u_transfer_map_vtbl(struct pipe_context *context, struct pipe_resource *resource, unsigned level, unsigned usage, const struct pipe_box *box, struct pipe_transfer **transfer) argument
142 u_transfer_flush_region_vtbl( struct pipe_context *pipe, struct pipe_transfer *transfer, const struct pipe_box *box) argument
[all...]
H A Du_upload_mgr.c96 struct pipe_box *box = &upload->transfer->box; local
98 if (!upload->map_persistent && (int) upload->offset > box->x) {
100 box->x, upload->offset - box->x);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/util/
H A DPath.java36 public static String createPath(Box box) { argument
37 return createPath(box, "");
40 private static String createPath(Box box, String path) { argument
41 if (box instanceof IsoFile) {
44 List<?> boxesOfBoxType = box.getParent().getBoxes(box.getClass());
45 int index = boxesOfBoxType.indexOf(box);
46 path = String.format("/%s[%d]", box.getType(), index) + path;
48 return createPath(box.getParent(), path);
52 public static Box getPath(Box box, Strin argument
58 getPaths(Box box, String path) argument
111 isContained(Box box, String path) argument
[all...]
/external/syslinux/gpxe/src/hci/mucurses/
H A Dedging.c20 int box ( WINDOW *win, chtype verch, chtype horch ) { function
/external/syslinux/gpxe/src/hci/mucurses/widgets/
H A Deditbox.c27 * Editable text box widget
34 * Initialise text box widget
36 * @v box Editable text box widget
45 void init_editbox ( struct edit_box *box, char *buf, size_t len, argument
48 memset ( box, 0, sizeof ( *box ) );
49 box->string.buf = buf;
50 box->string.len = len;
51 box
[all...]
/external/syslinux/gpxe/src/include/gpxe/
H A Deditbox.h6 * Editable text box widget
15 /** An editable text box widget */
33 /** Editable text box widget flags */
39 extern void init_editbox ( struct edit_box *box, char *buf, size_t len,
43 extern void draw_editbox ( struct edit_box *box ) __nonnull;
44 static inline int edit_editbox ( struct edit_box *box, int key ) __nonnull;
47 * Edit text box widget
49 * @v box Editable text box widget
57 static inline int edit_editbox ( struct edit_box *box, in argument
[all...]
/external/pdfium/core/fpdfapi/page/
H A Dcpdf_pageobjectholder.cpp49 void CPDF_PageObjectHolder::AddImageMaskBoundingBox(const CFX_FloatRect& box) { argument
50 m_MaskBoundingBoxes.push_back(box);
/external/autotest/tko/
H A Ddisplay.py14 #### additional keys for shaded color of a box
44 ### color keys for box shading have names that end with 'pct'
90 class box: class in inherits:
173 ## average_grade defines a shade of the box
244 return box(None, None)
262 return box(None, None)
266 precounted_box = box(html, shade, False, link, tooltip,
/external/mesa3d/src/gallium/drivers/etnaviv/
H A Detnaviv_transfer.c42 /* Compute offset into a 1D/2D/3D buffer of a certain box.
43 * This box must be aligned to the block width and height of the
46 etna_compute_offset(enum pipe_format format, const struct pipe_box *box, argument
49 return box->z * layer_stride +
50 box->y / util_format_get_blockheight(format) * stride +
51 box->x / util_format_get_blockwidth(format) *
88 mapped + ptrans->box.z * res_level->layer_stride,
89 trans->staging, ptrans->box.x, ptrans->box.y,
90 res_level->stride, ptrans->box
123 etna_transfer_map(struct pipe_context *pctx, struct pipe_resource *prsc, unsigned level, unsigned usage, const struct pipe_box *box, struct pipe_transfer **out_transfer) argument
340 etna_transfer_flush_region(struct pipe_context *pctx, struct pipe_transfer *transfer, const struct pipe_box *box) argument
[all...]
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_resource_buffer.c68 const struct pipe_box *box,
81 transfer->box = *box;
84 return buffer->data + transfer->box.x;
64 i915_buffer_transfer_map(struct pipe_context *pipe, struct pipe_resource *resource, unsigned level, unsigned usage, const struct pipe_box *box, struct pipe_transfer **ptransfer) argument
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_transfer.c60 src, transfer->level, &transfer->box);
69 blit.src.box = transfer->box;
72 blit.dst.box.width = transfer->box.width;
73 blit.dst.box.height = transfer->box.height;
74 blit.dst.box.depth = transfer->box.depth;
91 transfer->box
103 r300_texture_transfer_map(struct pipe_context *ctx, struct pipe_resource *texture, unsigned level, unsigned usage, const struct pipe_box *box, struct pipe_transfer **transfer) argument
[all...]
H A Dr300_screen_buffer.c71 const struct pipe_box *box,
84 transfer->box = *box;
90 return rbuf->malloced_buffer + box->x;
137 return map + box->x;
67 r300_buffer_transfer_map( struct pipe_context *context, struct pipe_resource *resource, unsigned level, unsigned usage, const struct pipe_box *box, struct pipe_transfer **ptransfer ) argument
/external/mesa3d/src/gallium/drivers/virgl/
H A Dvirgl_buffer.c45 const struct pipe_box *box,
72 trans->base.box = *box;
76 offset = box->x;
80 vs->vws->transfer_get(vs->vws, vbuf->base.hw_res, box, trans->base.stride, trans->base.layer_stride, offset, level);
112 &transfer->box, trans->base.stride, trans->base.layer_stride, trans->offset, transfer->level);
122 const struct pipe_box *box)
135 util_range_add(&vbuf->valid_buffer_range, transfer->box.x + box->x,
136 transfer->box
41 virgl_buffer_transfer_map(struct pipe_context *ctx, struct pipe_resource *resource, unsigned level, unsigned usage, const struct pipe_box *box, struct pipe_transfer **transfer) argument
120 virgl_buffer_transfer_flush_region(struct pipe_context *ctx, struct pipe_transfer *transfer, const struct pipe_box *box) argument
[all...]
H A Dvirgl_resource.c90 struct pipe_box box; local
97 u_box_1d(offset, size, &box);
98 virgl_transfer_inline_write(pipe, resource, 0, usage, &box, data, 0, 0);
H A Dvirgl_query.c115 struct pipe_box box; local
118 u_box_1d(0, 4, &box);
120 &box, &qs, 0, 0);
/external/mesa3d/src/gallium/winsys/sw/null/
H A Dnull_sw_winsys.c119 struct pipe_box *box)
116 null_sw_displaytarget_display(struct sw_winsys *winsys, struct sw_displaytarget *dt, void *context_private, struct pipe_box *box) argument
/external/mesa3d/src/mesa/main/
H A Dscissor.c96 * Define the scissor box.
98 * \param x, y coordinates of the scissor box lower-left corner.
99 * \param width width of the scissor box.
100 * \param height height of the scissor box.
162 * Define the scissor box.
165 * \param x, y coordinates of the scissor box lower-left corner.
166 * \param width width of the scissor box.
167 * \param height height of the scissor box.
215 _mesa_WindowRectanglesEXT(GLenum mode, GLsizei count, const GLint *box) argument
223 _mesa_enum_to_string(mode), count, box);
[all...]
/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/clang/test/SemaCXX/
H A Dwarn-unused-value.cpp15 Box* box = new Box; local
16 box->i; // expected-warning {{expression result unused}}
17 box->j;
/external/mesa3d/src/gallium/auxiliary/postprocess/
H A Dpp_mlaa.c230 struct pipe_box box; local
277 u_box_2d(0, 0, 165, 165, &box);
280 PIPE_TRANSFER_WRITE, &box,
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_resource_buffer.c72 const struct pipe_box *box,
84 assert(box->y == 0);
85 assert(box->z == 0);
86 assert(box->height == 1);
87 assert(box->depth == 1);
97 transfer->box = *box;
271 map += transfer->box.x;
288 const struct pipe_box *box)
293 unsigned offset = transfer->box
68 svga_buffer_transfer_map(struct pipe_context *pipe, struct pipe_resource *resource, unsigned level, unsigned usage, const struct pipe_box *box, struct pipe_transfer **ptransfer) argument
286 svga_buffer_transfer_flush_region( struct pipe_context *pipe, struct pipe_transfer *transfer, const struct pipe_box *box) argument
[all...]
/external/mesa3d/src/gallium/drivers/trace/
H A Dtr_dump_state.c80 void trace_dump_box(const struct pipe_box *box) argument
85 if (!box) {
92 trace_dump_member(int, box, x);
93 trace_dump_member(int, box, y);
94 trace_dump_member(int, box, z);
95 trace_dump_member(int, box, width);
96 trace_dump_member(int, box, height);
97 trace_dump_member(int, box, depth);
626 trace_dump_member(uint, state, box.x);
627 trace_dump_member(uint, state, box
[all...]

Completed in 560 milliseconds

12345678