HomeSort by relevance Sort by last modified time
    Searched defs:box (Results 26 - 50 of 164) sorted by null

12 3 4 5 6 7

  /external/mesa3d/src/gallium/state_trackers/vdpau/
surface.c 232 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/openssh/
sandbox-seccomp-filter.c 147 struct ssh_sandbox *box; local
154 box = xcalloc(1, sizeof(*box));
155 box->child_pid = 0;
157 return box;
198 ssh_sandbox_child(struct ssh_sandbox *box)
235 ssh_sandbox_parent_finish(struct ssh_sandbox *box)
237 free(box);
242 ssh_sandbox_parent_preauth(struct ssh_sandbox *box, pid_t child_pid)
244 box->child_pid = child_pid
    [all...]
sandbox-systrace.c 94 struct ssh_sandbox *box; local
97 box = xcalloc(1, sizeof(*box));
98 box->systrace_fd = -1;
99 box->child_pid = 0;
100 box->osigchld = signal(SIGCHLD, SIG_IGN);
102 return box;
106 ssh_sandbox_child(struct ssh_sandbox *box)
109 signal(SIGCHLD, box->osigchld);
116 ssh_sandbox_parent(struct ssh_sandbox *box, pid_t child_pid
    [all...]
  /external/skia/gm/
textblob.cpp 101 SkRect box = blob->bounds(); variable
102 box.offset(offset);
103 canvas->drawRect(box, p);
  /external/toybox/kconfig/lxdialog/
textbox.c 2 * textbox.c -- implements the text box
38 static void refresh_text_box(WINDOW *dialog, WINDOW *box, int boxh, int boxw,
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, dlg.dialog.atr & A_COLOR)
    [all...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
CropFilter.java 74 addMaskedInputPort("box", ObjectFormat.fromClass(Quad.class, FrameFormat.TARGET_SIMPLE));
110 Frame boxFrame = pullInput("box");
114 // Get the box
115 Quad box = (Quad)boxFrame.getObjectValue(); local
128 shaderProgram.setSourceRegion(box);
DrawRectFilter.java 71 addMaskedInputPort("box", ObjectFormat.fromClass(Quad.class, FrameFormat.TARGET_SIMPLE));
89 Frame boxFrame = pullInput("box");
91 // Get the box
92 Quad box = (Quad)boxFrame.getObjectValue(); local
93 box = box.scaled(2.0f).translated(-1.0f, -1.0f);
100 renderBox(box);
109 private void renderBox(Quad box) {
114 float[] vertexValues = { box.p0.x, box.p0.y
    [all...]
  /packages/apps/ExactCalculator/tests/src/com/android/calculator2/
CalculatorHitSomeButtons.java 173 TextView box = (TextView) display; local
174 assertNotNull(box);
176 return box.getText().toString();
  /external/jmonkeyengine/engine/src/test/jme3test/helloworld/
HelloPhysics.java 47 import com.jme3.scene.shape.Box;
74 private static final Box box; field in class:HelloPhysics
78 private static final Box floor;
90 box = new Box(Vector3f.ZERO, brickLength, brickHeight, brickWidth);
91 box.scaleTextureCoordinates(new Vector2f(1f, .5f));
93 floor = new Box(Vector3f.ZERO, 10f, 0.1f, 5f);
185 Geometry brick_geo = new Geometry("brick", box);
HelloPicking.java 52 import com.jme3.scene.shape.Box;
128 Box box = new Box(new Vector3f(x, y, z), 1, 1, 1); local
129 Geometry cube = new Geometry(name, box);
138 Box box = new Box(new Vector3f(0, -4, -5), 15, .2f, 15); local
139 Geometry floor = new Geometry("the Floor", box);
  /external/fio/
ghelpers.c 8 GtkWidget *new_combo_entry_in_frame(GtkWidget *box, const char *label)
14 gtk_box_pack_start(GTK_BOX(box), frame, TRUE, TRUE, 3);
20 GtkWidget *new_info_entry_in_frame(GtkWidget *box, const char *label)
27 gtk_box_pack_start(GTK_BOX(box), frame, TRUE, TRUE, 3);
46 GtkWidget *new_info_entry_in_frame_rgb(GtkWidget *box, const char *label,
52 entry = new_info_entry_in_frame(box, label);
58 GtkWidget *new_info_label_in_frame(GtkWidget *box, const char *label)
65 gtk_box_pack_start(GTK_BOX(box), frame, TRUE, TRUE, 3);
73 GtkWidget *button, *box; local
75 box = gtk_hbox_new(FALSE, 3)
76 gtk_container_add(GTK_CONTAINER(hbox), box); local
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/batching/
TestBatchNode.java 18 import com.jme3.scene.shape.Box;
44 Box boxshape4 = new Box(Vector3f.ZERO, 1f, 1f, 1f );
55 Box box = new Box(Vector3f.ZERO, 1f, 1f, 1f); local
56 cube2 = new Geometry("cube2", box);
TestBatchNodeCluster.java 20 import com.jme3.scene.shape.Box;
142 Geometry box = new Geometry("Box" + i, new Box(Vector3f.ZERO, 1, 1, 1)); local
143 box.setLocalTranslation(new Vector3f(xPosition.get(xPosition.size() - 1),
146 batchNode.attachChild(box);
148 box.setMaterial(mat1);
151 box.setMaterial(mat2);
154 box.setMaterial(mat3);
157 box.setMaterial(mat4)
315 Spatial box; field in class:TestBatchNodeCluster
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
PhysicsTestHelper.java 23 import com.jme3.scene.shape.Box;
48 Box floorBox = new Box(140, 0.25f, 140);
61 Box box = new Box(0.25f, 0.25f, 0.25f); local
62 Geometry boxGeometry = new Geometry("Box", box);
65 //RigidBodyControl automatically uses box collision shapes when attached to single geometry with box mes
115 Box box = new Box(1, 1, 1); local
133 Box box = new Box(0.25f, 0.25f, 0.25f); local
    [all...]
TestCollisionShapeFactory.java 45 import com.jme3.scene.shape.Box;
99 Box box = new Box(0.25f, 0.25f, 0.25f); local
102 new Geometry("box1", box),
103 new Geometry("box2", box),
104 new Geometry("box3", box),
TestPhysicsCar.java 105 BoxCollisionShape box = new BoxCollisionShape(new Vector3f(1.2f, 0.5f, 2.4f)); local
106 compoundShape.addChildShape(box, new Vector3f(0, 1, 0));
  /external/jmonkeyengine/engine/src/test/jme3test/collision/
TestMousePick.java 48 import com.jme3.scene.shape.Box;
110 Box box = new Box(new Vector3f(x, y, z), 1, 1, 1); local
111 Geometry cube = new Geometry(name, box);
120 Box box = new Box(new Vector3f(0, -4, -5), 15, .2f, 15); local
121 Geometry floor = new Geometry("the Floor", box);
  /external/jmonkeyengine/engine/src/test/jme3test/model/anim/
TestSpatialAnim.java 13 import com.jme3.scene.shape.Box;
34 Box box = new Box(1, 1, 1); local
35 Geometry geom = new Geometry("box", box);
40 Box child = new Box(0.5f, 0.5f, 0.5f);
41 Geometry childGeom = new Geometry("box", child);
TestCustomAnim.java 49 import com.jme3.scene.shape.Box;
74 Box box = new Box(1, 1, 1); local
77 FloatBuffer weights = FloatBuffer.allocate( box.getVertexCount() * 4 );
80 box.setBuffer(weightsBuf);
83 ByteBuffer indices = ByteBuffer.allocate( box.getVertexCount() * 4 );
86 box.setBuffer(indicesBuf);
89 box.generateBindPose(true);
98 for (int i = 0; i < box.getVertexCount() * 4; i += 4)
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_resource_texture.c 60 SVGA3dCopyBox box; local
63 box.x = st->base.box.x;
64 box.y = y;
65 box.z = st->base.box.z;
66 box.w = st->base.box.width;
67 box.h = h;
68 box.d = 1
    [all...]
svga_surface.c 56 SVGA3dCopyBox box, *boxes; local
70 box.x = dst_x;
71 box.y = dst_y;
72 box.z = dst_z;
73 box.w = width;
74 box.h = height;
75 box.d = depth;
76 box.srcx = src_x;
77 box.srcy = src_y;
78 box.srcz = src_z
    [all...]
  /external/mesa3d/src/gallium/tests/graw/
graw_util.h 227 struct pipe_box box; local
245 u_box_2d(0, 0, width, height, &box);
251 &box,
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTestUtils.java 122 Mailbox box = new Mailbox(); local
129 box.mDisplayName = displayName;
130 box.mServerId = name;
131 box.mParentServerId = "parent-serverid-" + name;
132 box.mParentKey = 4;
133 box.mAccountKey = accountId;
134 box.mType = type;
135 box.mDelimiter = delimiter;
136 box.mSyncKey = "sync-key-" + name;
137 box.mSyncLookback = 2
    [all...]
  /art/test/045-reflect-array/src/
Main.java 132 Short box = (Short) Array.get(shortArray, 0); local
  /external/clang/test/Analysis/inlining/
false-positive-suppression.cpp 81 int *&box = m.getValue(i); local
83 box = getPointer();
84 *box = 1; // no-warning

Completed in 135 milliseconds

12 3 4 5 6 7