HomeSort by relevance Sort by last modified time
    Searched refs:box (Results 1 - 25 of 327) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGenCXX/
virtual-destructor-synthesis.cpp 3 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/
u_box.h 9 struct pipe_box *box )
11 box->x = x;
12 box->y = 0;
13 box->z = 0;
14 box->width = w;
15 box->height = 1;
16 box->depth = 1;
24 struct pipe_box *box )
26 box->x = x;
27 box->y = y
    [all...]
u_transfer.c 14 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->height
    [all...]
u_staging.c 57 const struct pipe_box *box,
67 tx->base.box = *box;
75 util_staging_resource_template(pt, box->width, box->height, box->depth, &staging_resource_template);
89 sbox.x = box->x;
90 sbox.y = box->y;
91 sbox.z = box->z;
92 sbox.width = box->width
    [all...]
u_transfer.h 21 const struct pipe_box *box,
28 const struct pipe_box *box);
34 const struct pipe_box *box);
79 const struct pipe_box *box,
103 const struct pipe_box *box);
113 const struct pipe_box *box);
122 const struct pipe_box *box,
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
SampleTableBox.java 25 * If the track that contains the Sample Table Box references no data, then the Sample Table Box does not need
27 * If the track that the Sample Table Box is contained in does reference data, then the following sub-boxes are
29 * Description Box shall contain at least one entry. A Sample Description Box is required because it contains the
30 * data reference index field which indicates which Data Reference Box to use to retrieve the media samples.
32 * Sample Box is optional. If the Sync Sample Box is not present, all samples are sync samples.<br>
34 * Box.
44 for (Box box : boxes)
81 Box box = boxes.get(i); local
    [all...]
MediaBox.java 34 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)
    [all...]
MediaInformationBox.java 22 * 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;
TrackBox.java 36 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/openssh/
sandbox-null.c 44 struct ssh_sandbox *box; local
50 box = xcalloc(1, sizeof(*box));
51 return box;
55 ssh_sandbox_child(struct ssh_sandbox *box)
61 ssh_sandbox_parent_finish(struct ssh_sandbox *box)
63 free(box);
67 ssh_sandbox_parent_preauth(struct ssh_sandbox *box, pid_t child_pid)
sandbox-darwin.c 45 struct ssh_sandbox *box; local
52 box = xcalloc(1, sizeof(*box));
53 box->child_pid = 0;
55 return box;
59 ssh_sandbox_child(struct ssh_sandbox *box)
86 ssh_sandbox_parent_finish(struct ssh_sandbox *box)
88 free(box);
93 ssh_sandbox_parent_preauth(struct ssh_sandbox *box, pid_t child_pid)
95 box->child_pid = child_pid
    [all...]
sandbox-rlimit.c 47 struct ssh_sandbox *box; local
54 box = xcalloc(1, sizeof(*box));
55 box->child_pid = 0;
57 return box;
61 ssh_sandbox_child(struct ssh_sandbox *box)
85 ssh_sandbox_parent_finish(struct ssh_sandbox *box)
87 free(box);
92 ssh_sandbox_parent_preauth(struct ssh_sandbox *box, pid_t child_pid)
94 box->child_pid = child_pid
    [all...]
sandbox-capsicum.c 53 struct ssh_sandbox *box; local
60 box = xcalloc(1, sizeof(*box));
61 box->monitor = monitor;
62 box->child_pid = 0;
64 return box;
68 ssh_sandbox_child(struct ssh_sandbox *box)
97 if (cap_rights_limit(box->monitor->m_recvfd, &rights) < 0 &&
101 if (cap_rights_limit(box->monitor->m_log_sendfd, &rights) < 0 &&
110 ssh_sandbox_parent_finish(struct ssh_sandbox *box)
    [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/chromium-trace/trace-viewer/tracing/tracing/ui/tracks/
thread_track.css 7 -webkit-box-orient: vertical;
8 display: -webkit-box;
drawing_container.css 7 -webkit-box-flex: 1;
15 -webkit-box-flex: 1;
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/
TrackFragmentBox.java 20 import com.coremedia.iso.boxes.Box;
23 * aligned(8) class TrackFragmentBox extends Box('traf'){
35 for (Box box : getBoxes()) {
36 if (box instanceof TrackFragmentHeaderBox) {
37 return (TrackFragmentHeaderBox) box;
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/util/
Path.java 20 import com.coremedia.iso.boxes.Box;
36 public static String createPath(Box box) {
37 return createPath(box, "");
40 private static String createPath(Box box, String path) {
41 if (box instanceof IsoFile) {
44 List<?> boxesOfBoxType = box.getParent().getBoxes(box.getClass());
45 int index = boxesOfBoxType.indexOf(box);
    [all...]
  /external/skia/src/svg/parser/
SkSVGSVG.cpp 46 SkRect box = SkRect::MakeLTRB(viewBox[0] / width, viewBox[1] / height, local
48 if (box.fLeft == 0 && box.fTop == 0 &&
49 box.fRight == SK_Scalar1 && box.fBottom == SK_Scalar1)
52 if (box.fLeft != 0) {
54 x.appendScalar(box.fLeft);
57 if (box.fTop != 0) {
59 y.appendScalar(box.fTop);
62 if (box.fRight != SK_Scalar1)
    [all...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
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...]
  /external/fio/
ghelpers.h 4 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/mesa3d/src/gallium/drivers/svga/
svga_pipe_blit.c 49 SVGA3dCopyBox *box;
87 &box,
96 &box,
101 box->x = dstx;
102 box->y = dsty;
103 box->z = 0;
104 box->w = width;
105 box->h = height;
106 box->d = 1;
107 box->srcx = src_box->x
    [all...]
  /packages/apps/Exchange/tests/src/com/android/exchange/provider/
EmailContentSetupUtils.java 66 Mailbox box = new Mailbox(); local
68 box.mDisplayName = name;
69 box.mAccountKey = accountId;
70 box.mSyncKey = "sync-key-" + name;
71 box.mSyncLookback = 2;
72 box.mSyncInterval = Account.CHECK_INTERVAL_NEVER;
73 box.mType = type;
74 box.mServerId = "serverid-" + name;
75 box.mParentServerId = parentBox != null ? parentBox.mServerId : "parent-serverid-" + name;
78 box.save(context)
    [all...]
  /external/skia/src/animator/
SkDrawTextBox.cpp 72 SkTextBox box; local
73 box.setMode((SkTextBox::Mode) mode);
74 box.setSpacingAlign((SkTextBox::SpacingAlign) spacingAlign);
75 box.setBox(fRect);
76 box.setSpacing(fSpacingMul, fSpacingAdd);
78 box.draw(maker.fCanvas, fText.c_str(), fText.size(), *maker.fPaint);
  /external/eigen/test/
geo_alignedbox.cpp 109 BoxType box( m, M );
112 VERIFY_IS_APPROX(sides, box.sizes() );
113 VERIFY_IS_APPROX(sides[1], box.sizes()[1] );
114 VERIFY_IS_APPROX(sides[1], box.sizes().maxCoeff() );
115 VERIFY_IS_APPROX(sides[0], box.sizes().minCoeff() );
117 VERIFY_IS_APPROX( 14.0f, box.volume() );
118 VERIFY_IS_APPROX( 53.0f, box.diagonal().squaredNorm() );
119 VERIFY_IS_APPROX( std::sqrt( 53.0f ), box.diagonal().norm() );
121 VERIFY_IS_APPROX( m, box.corner( BoxType::BottomLeft ) );
122 VERIFY_IS_APPROX( M, box.corner( BoxType::TopRight ) )
    [all...]

Completed in 1181 milliseconds

1 2 3 4 5 6 7 8 91011>>