Searched refs:box (Results 1 - 25 of 380) sorted by relevance

1234567891011>>

/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/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DSampleTableBox.java44 for (Box box : boxes) {
45 if (box instanceof SampleDescriptionBox) {
46 return (SampleDescriptionBox) box;
53 for (Box box : boxes) {
54 if (box instanceof SampleSizeBox) {
55 return (SampleSizeBox) box;
62 for (Box box : boxes) {
63 if (box instanceof SampleToChunkBox) {
64 return (SampleToChunkBox) box;
71 for (Box box
[all...]
H A DMediaBox.java34 for (Box box : boxes) {
35 if (box instanceof MediaInformationBox) {
36 return (MediaInformationBox) box;
43 for (Box box : boxes) {
44 if (box instanceof MediaHeaderBox) {
45 return (MediaHeaderBox) box;
52 for (Box box : boxes) {
53 if (box instanceof HandlerBox) {
54 return (HandlerBox) box;
H A DMediaInformationBox.java22 * This box contains all the objects that declare characteristic information of the media in the track.
32 for (Box box : boxes) {
33 if (box instanceof SampleTableBox) {
34 return (SampleTableBox) box;
41 for (Box box : boxes) {
42 if (box instanceof AbstractMediaHeaderBox) {
43 return (AbstractMediaHeaderBox) box;
H A DTrackBox.java36 for (Box box : boxes) {
37 if (box instanceof TrackHeaderBox) {
38 return (TrackHeaderBox) box;
63 for (Box box : boxes) {
64 if (box instanceof MediaBox) {
65 return (MediaBox) box;
/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/mesa3d/src/gallium/auxiliary/util/
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_gen_mipmap.c107 blit.src.box.width = u_minify(pt->width0, blit.src.level);
108 blit.src.box.height = u_minify(pt->height0, blit.src.level);
110 blit.dst.box.width = u_minify(pt->width0, blit.dst.level);
111 blit.dst.box.height = u_minify(pt->height0, blit.dst.level);
115 blit.src.box.z = blit.dst.box.z = 0;
116 blit.src.box.depth = util_max_layer(pt, blit.src.level)+1;
117 blit.dst.box.depth = util_max_layer(pt, blit.dst.level)+1;
120 blit.src.box.z = blit.dst.box
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/
H A DTrackFragmentBox.java35 for (Box box : getBoxes()) {
36 if (box instanceof TrackFragmentHeaderBox) {
37 return (TrackFragmentHeaderBox) box;
/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/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/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_blit.c68 if (info->dst.box.x != info->src.box.x ||
69 info->dst.box.y != info->src.box.y ||
70 info->dst.box.width != info->src.box.width ||
71 info->dst.box.height != info->src.box.height) {
79 if (is_tile_unaligned(info->dst.box.x, tile_width) ||
80 is_tile_unaligned(info->dst.box
[all...]
H A Dvc4_tiling.c105 check_box_utile_alignment(const struct pipe_box *box, int cpp) argument
107 assert(!(box->x & (vc4_utile_width(cpp) - 1)));
108 assert(!(box->y & (vc4_utile_height(cpp) - 1)));
109 assert(!(box->width & (vc4_utile_width(cpp) - 1)));
110 assert(!(box->height & (vc4_utile_height(cpp) - 1)));
116 int cpp, const struct pipe_box *box)
120 uint32_t xstart = box->x;
121 uint32_t ystart = box->y;
123 for (uint32_t y = 0; y < box->height; y += utile_h) {
124 for (int x = 0; x < box
114 vc4_load_lt_image(void *dst, uint32_t dst_stride, void *src, uint32_t src_stride, int cpp, const struct pipe_box *box) argument
135 vc4_store_lt_image(void *dst, uint32_t dst_stride, void *src, uint32_t src_stride, int cpp, const struct pipe_box *box) argument
211 vc4_t_image_helper(void *gpu, uint32_t gpu_stride, void *cpu, uint32_t cpu_stride, int cpp, const struct pipe_box *box, bool to_cpu) argument
270 vc4_store_t_image(void *dst, uint32_t dst_stride, void *src, uint32_t src_stride, int cpp, const struct pipe_box *box) argument
280 vc4_load_t_image(void *dst, uint32_t dst_stride, void *src, uint32_t src_stride, int cpp, const struct pipe_box *box) argument
294 vc4_load_tiled_image(void *dst, uint32_t dst_stride, void *src, uint32_t src_stride, uint8_t tiling_format, int cpp, const struct pipe_box *box) argument
318 vc4_store_tiled_image(void *dst, uint32_t dst_stride, void *src, uint32_t src_stride, uint8_t tiling_format, int cpp, const struct pipe_box *box) argument
[all...]
/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/fio/
H A Dghelpers.h4 GtkWidget *new_combo_entry_in_frame(GtkWidget *box, const char *label);
5 GtkWidget *new_info_entry_in_frame(GtkWidget *box, const char *label);
6 GtkWidget *new_info_label_in_frame(GtkWidget *box, const char *label);
7 GtkWidget *new_info_entry_in_frame_rgb(GtkWidget *box, const char *label,
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/
H A DIMETest.java26 Box box = Box.createVerticalBox();
27 box.add(new JTextField(sampleText));
28 box.add(new JTextField(sampleText));
29 jf.getContentPane().add(box);
/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_transfer.h36 const struct pipe_box *box,
/external/python/cpython2/Demo/tix/samples/
H A DBtnBox.py14 # group of TK buttons. You can use it to manage the buttons in a dialog box,
21 # Create the label on the top of the dialog box
24 anchor=Tix.CENTER, text='This dialog box is\n a demonstration of the\n tixButtonBox widget')
26 # Create the button box and add a few buttons in it. Set the
33 box = Tix.ButtonBox(w, orientation=Tix.HORIZONTAL)
34 box.add('ok', text='OK', underline=0, width=5,
36 box.add('close', text='Cancel', underline=0, width=5,
38 box.pack(side=Tix.BOTTOM, fill=Tix.X)
/external/autotest/client/cros/video/
H A Dchameleon_screenshot_capturer.py24 timeout_video_input_s, box=None):
32 @box: int tuple, left, upper, right, lower pixel coordinates
41 self.box = box
84 def capture(self, filename, box=None):
91 @param box: int tuple, left, upper, right, lower pixel coordinates
92 defining a box region of what the image should be.
99 if not box:
100 box = self.box
[all...]
/external/eigen/test/
H A Dgeo_alignedbox.cpp118 BoxType box( m, M );
121 VERIFY_IS_APPROX(sides, box.sizes() );
122 VERIFY_IS_APPROX(sides[1], box.sizes()[1] );
123 VERIFY_IS_APPROX(sides[1], box.sizes().maxCoeff() );
124 VERIFY_IS_APPROX(sides[0], box.sizes().minCoeff() );
126 VERIFY_IS_APPROX( 14.0f, box.volume() );
127 VERIFY_IS_APPROX( 53.0f, box.diagonal().squaredNorm() );
128 VERIFY_IS_APPROX( std::sqrt( 53.0f ), box.diagonal().norm() );
130 VERIFY_IS_APPROX( m, box.corner( BoxType::BottomLeft ) );
131 VERIFY_IS_APPROX( M, box
[all...]
/external/mesa3d/src/gallium/drivers/freedreno/
H A Dfreedreno_resource.c122 blit->dst.resource, blit->dst.level, blit->dst.box.x,
123 blit->dst.box.y, blit->dst.box.z,
124 blit->src.resource, blit->src.level, &blit->src.box);
130 unsigned level, unsigned usage, const struct pipe_box *box)
162 box->x, box->y, box->z, box->width, box
129 fd_try_shadow_resource(struct fd_context *ctx, struct fd_resource *rsc, unsigned level, unsigned usage, const struct pipe_box *box) argument
297 fd_resource_flush_z32s8(struct fd_transfer *trans, const struct pipe_box *box) argument
324 fd_resource_flush_rgtc(struct fd_transfer *trans, const struct pipe_box *box) argument
365 fd_resource_flush(struct fd_transfer *trans, const struct pipe_box *box) argument
390 fd_resource_transfer_flush_region(struct pipe_context *pctx, struct pipe_transfer *ptrans, const struct pipe_box *box) argument
415 struct pipe_box box; local
437 fd_resource_transfer_map(struct pipe_context *pctx, struct pipe_resource *prsc, unsigned level, unsigned usage, const struct pipe_box *box, struct pipe_transfer **pptrans) argument
[all...]
/external/toybox/kconfig/lxdialog/
H A Dtextbox.c2 * textbox.c -- implements the text box
38 static void refresh_text_box(WINDOW *dialog, WINDOW *box, int boxh, int boxw, argument
41 print_page(box, boxh, boxw);
49 * Display text from a file in a dialog box.
57 WINDOW *dialog, *box; local
85 /* center dialog box on screen */
94 /* Create window for box region, used for scrolling text */
97 box = subwin(dialog, boxh, boxw, y + 1, x + 1);
98 wattrset(box, dlg.dialog.atr);
99 wbkgdset(box, dl
[all...]
/external/mesa3d/src/gallium/drivers/ilo/
H A Dilo_transfer.c154 * the transfer box, with proper paddings.
160 const struct pipe_box *box = &xfer->base.box; local
170 (box->x % ILO_TRANSFER_MAP_BUFFER_ALIGNMENT) + box->width;
175 templ.width0 = box->width;
178 templ.height0 = box->height;
180 templ.array_size = box->depth;
242 * transfer box.
248 const struct pipe_box *box local
345 tex_get_box_origin(const struct ilo_texture *tex, unsigned level, unsigned slice, const struct pipe_box *box, unsigned *mem_x, unsigned *mem_y) argument
360 tex_get_box_offset(const struct ilo_texture *tex, unsigned level, const struct pipe_box *box) argument
573 const struct pipe_box *box = &xfer->base.box; local
700 const struct pipe_box *box = &xfer->base.box; local
825 const struct pipe_box *box = &xfer->base.box; local
1013 copy_staging_resource(struct ilo_context *ilo, struct ilo_transfer *xfer, const struct pipe_box *box) argument
1144 ilo_transfer_flush_region(struct pipe_context *pipe, struct pipe_transfer *transfer, const struct pipe_box *box) argument
1190 ilo_transfer_map(struct pipe_context *pipe, struct pipe_resource *res, unsigned level, unsigned usage, const struct pipe_box *box, struct pipe_transfer **transfer) argument
[all...]

Completed in 1298 milliseconds

1234567891011>>