HomeSort by relevance Sort by last modified time
    Searched refs:box (Results 126 - 150 of 663) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/mesa3d/src/gallium/drivers/r300/
r300_screen_buffer.c 71 const struct pipe_box *box,
84 transfer->box = *box;
90 return rbuf->malloced_buffer + box->x;
137 return map + box->x;
  /external/python/cpython3/Lib/idlelib/
search.py 76 "Display search test box."
80 box = Toplevel(parent)
81 box.title("Test SearchDialog")
83 box.geometry("+%d+%d" % (x, y + 175))
84 text = Text(box, inactiveselectbackground='gray')
93 button = Button(box, text="Search (selection ignored)", command=show_find)
  /external/swiftshader/src/D3D8/
Direct3DVolume8.cpp 139 long Direct3DVolume8::LockBox(D3DLOCKED_BOX *lockedVolume, const D3DBOX *box, unsigned long flags)
163 if(box)
165 lockedVolume->pBits = lockExternal(box->Left, box->Top, box->Front, lock, sw::PUBLIC);
  /external/swiftshader/src/D3D9/
Direct3DVolume9.cpp 159 long Direct3DVolume9::LockBox(D3DLOCKED_BOX *lockedVolume, const D3DBOX *box, unsigned long flags)
194 if(box)
196 lockedVolume->pBits = lockExternal(box->Left, box->Top, box->Front, lock, sw::PUBLIC);
  /external/mesa3d/src/gallium/drivers/radeon/
r600_texture.c 120 blit.src.box = *src_box;
124 blit.dst.box.x = dstx;
125 blit.dst.box.y = dsty;
126 blit.dst.box.z = dstz;
127 blit.dst.box.width = src_box->width;
128 blit.dst.box.height = src_box->height;
129 blit.dst.box.depth = src_box->depth;
149 src, transfer->level, &transfer->box);
154 &transfer->box);
166 u_box_3d(0, 0, 0, transfer->box.width, transfer->box.height, transfer->box.depth, &sbox)
445 struct pipe_box box; local
    [all...]
  /external/opencv/cv/src/
cvshapedescr.cpp 773 box filled with zero values is returned.
777 icvFitEllipse_F( CvSeq* points, CvBox2D* box )
883 box->center.x = box->center.y =
884 box->size.width = box->size.height =
885 box->angle = 0.f;
915 box->center.x = (float)offx;
916 box->center.y = (float)offy;
917 box->size.width = box->size.height = box->angle = 0.f
978 CvBox2D box; local
    [all...]
cvgeometry.cpp 87 cvBoxPoints( CvBox2D box, CvPoint2D32f pt[4] )
93 double angle = box.angle*CV_PI/180.;
100 pt[0].x = box.center.x - a*box.size.height - b*box.size.width;
101 pt[0].y = box.center.y + b*box.size.height - a*box.size.width;
102 pt[1].x = box.center.x + a*box.size.height - b*box.size.width
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ViewHierarchyScene.java 74 GradientWidget box = new GradientWidget(this, node); local
75 box.setLayout(LayoutFactory.createVerticalFlowLayout());
76 box.setBorder(BorderFactory.createLineBorder(2, Color.BLACK));
77 box.setOpaque(true);
85 box.addChild(label);
93 box.addressWidget = label;
95 box.addChild(label);
103 box.addChild(label);
105 return box;
  /external/adhd/scripts/volume_tuning/
volume.js 26 var box = document.createElement('input');
27 box.size = 5;
28 box.className = 'box';
31 col_box.appendChild(box);
33 minmax_boxes.push(box);
34 box.oninput = redraw;
46 var box = document.createElement('input');
47 box.size = 5;
48 box.className = 'box'
    [all...]
  /external/clang/test/Analysis/inlining/
false-positive-suppression.cpp 81 int *&box = m.getValue(i); local
83 box = getPointer();
84 *box = 1; // no-warning
  /external/fio/
gclient.c 155 GtkWidget *vbox, *box, *scroll, *res_notebook; local
162 box = gtk_hbox_new(FALSE, 0);
163 gtk_box_pack_start(GTK_BOX(vbox), box, FALSE, FALSE, 5); local
169 ge->disk_util_vbox = box;
178 GtkWidget *box, *frame, *entry, *vbox, *util_vbox; local
191 box = gtk_vbox_new(FALSE, 3);
192 gtk_container_add(GTK_CONTAINER(frame), box); local
195 gtk_box_pack_start(GTK_BOX(box), frame, FALSE, FALSE, 2);
208 gtk_box_pack_start(GTK_BOX(box), frame, FALSE, FALSE, 2);
221 gtk_box_pack_start(GTK_BOX(box), frame, FALSE, FALSE, 2)
752 GtkWidget *frame, *box, *tree_view = NULL; local
764 gtk_container_add(GTK_CONTAINER(frame), box); local
792 GtkWidget *box, *frame, *entry; local
812 gtk_container_add(GTK_CONTAINER(frame), box); local
1154 GtkWidget *frame, *label, *box, *vbox, *main_vbox; local
1175 gtk_box_pack_start(GTK_BOX(mbox), box, TRUE, FALSE, 3); local
1184 gtk_box_pack_start(GTK_BOX(main_vbox), box, TRUE, FALSE, 3); local
1234 gtk_container_add(GTK_CONTAINER(frame), box); local
1287 GtkWidget *box, *vbox, *entry, *scroll; local
1297 gtk_box_pack_start(GTK_BOX(vbox), box, TRUE, FALSE, 5); local
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_resource_buffer.c 72 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.x + box->x
    [all...]
svga_resource_buffer_upload.c 303 * fill in the box info below.
447 * Patch the DMA/update command with the final copy box.
454 SVGA3dBox *box = &update->body.box; local
459 box->x = sbuf->map.ranges[i].start;
460 box->y = 0;
461 box->z = 0;
462 box->w = sbuf->map.ranges[i].end - sbuf->map.ranges[i].start;
463 box->h = 1;
464 box->d = 1
479 SVGA3dCopyBox *box = sbuf->dma.boxes + i; local
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
FreeBox.java 36 * A free box. Just a placeholder to enable editing without rewriting the whole file.
38 public class FreeBox implements Box {
41 List<Box> replacers = new LinkedList<Box>();
61 for (Box replacer : replacers) {
84 for (Box replacer : replacers) {
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) {
108 data.position(l2i(box.getSize()))
    [all...]
  /external/python/cpython2/RISCOS/Modules/
drawfmodule.c 163 os_box *box; local
185 box=&dpath->bbox;
221 (draw_output_path)((char*)box+0x80000000),0);
225 If the bounding box size is zero, it returns 0x7FFFFFFF, ..., 0x80000000 instead of the
227 if (box->x0==0x7FFFFFFF)
237 extend(&(diag->bbox),box);
250 os_box *box; local
273 box=&(dtext->bbox);
274 box->x0=x;box->y0=y;box->x1=x+len*xsize;box->y1=y+ysize
289 os_box *box; local
410 os_box *box; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_surface.c 114 * Copy 3D box from one place to another.
277 /* init src box */
280 /* init dst box */
295 /* Note: all box positions and sizes are in pixels */
298 * Shrink dest box by the src block size.
305 * Expand dest box by the dest block size.
619 /* Return if the box is totally inside the resource.
623 const struct pipe_box *box,
675 return box->x >= 0 &&
676 box->x + box->width <= (int) width &
    [all...]
  /external/mesa3d/src/gallium/drivers/i915/
i915_resource_texture.c 719 const struct pipe_box *box,
737 transfer->b.box = *box;
763 assert(box->z == 0);
773 offset = i915_texture_offset(tex, transfer->b.level, box->z);
786 box->y / util_format_get_blockheight(format) * transfer->b.stride +
787 box->x / util_format_get_blockwidth(format) * util_format_get_blocksize(format);
808 u_box_origin_2d(itransfer->b.box.width, itransfer->b.box.height, &sbox);
810 itransfer->b.box.x, itransfer->b.box.y, itransfer->b.box.z
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/nvc0/
nvc0_resource.h 52 const struct pipe_box *box,
  /external/mesa3d/src/gallium/include/state_tracker/
sw_winsys.h 134 struct pipe_box *box );
  /external/mesa3d/src/mesa/main/
scissor.h 47 _mesa_WindowRectanglesEXT(GLenum mode, GLsizei count, const GLint *box);
  /external/mesa3d/src/mesa/state_tracker/
st_cb_readpixels.c 310 blit.src.box.x = x;
311 blit.dst.box.x = 0;
312 blit.src.box.y = y;
313 blit.dst.box.y = 0;
314 blit.src.box.z = strb->surface->u.tex.first_layer;
315 blit.dst.box.z = 0;
316 blit.src.box.width = blit.dst.box.width = width;
317 blit.src.box.height = blit.dst.box.height = height
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
SampleEntry.java 23 import com.coremedia.iso.boxes.Box;
48 protected List<Box> boxes = new LinkedList<Box>();
68 public void setBoxes(List<Box> boxes) {
69 this.boxes = new LinkedList<Box>(boxes);
72 public void addBox(Box b) {
77 public boolean removeBox(Box b) {
82 public List<Box> getBoxes() {
87 public <T extends Box> List<T> getBoxes(Class<T> clazz, boolean recursive) {
89 for (Box boxe : boxes) { //clazz.isInstance(boxe) / clazz == boxe.getClass()
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/
FullContainerBox.java 20 import com.coremedia.iso.boxes.Box;
34 * Abstract base class for a full iso box only containing ither boxes.
37 protected List<Box> boxes = new LinkedList<Box>();
41 public void setBoxes(List<Box> boxes) {
42 this.boxes = new LinkedList<Box>(boxes);
46 public <T extends Box> List<T> getBoxes(Class<T> clazz) {
51 public <T extends Box> List<T> getBoxes(Class<T> clazz, boolean recursive) {
53 for (Box boxe : boxes) { //clazz.isInstance(boxe) / clazz == boxe.getClass()?
69 for (Box boxe : boxes)
    [all...]
  /external/pdfium/core/fpdfapi/page/
cpdf_page.cpp 115 CFX_FloatRect box; local
118 box = pBox->GetRect();
119 box.Normalize();
121 return box;
  /external/python/cpython2/Demo/tix/samples/
DirList.py 38 # of the dialog box
88 box = Tix.ButtonBox (w, orientation='horizontal')
89 box.add ('ok', text='Ok', underline=0, width=6,
91 box.add ('cancel', text='Cancel', underline=0, width=6,
94 box.pack( anchor='s', fill='x', side=BOTTOM)

Completed in 722 milliseconds

1 2 3 4 56 7 8 91011>>