Home
last modified time | relevance | path

Searched full:volumes (Results 1 – 25 of 376) sorted by relevance

12345678910>>...16

/external/swiftshader/third_party/LLVM/utils/lit/lit/ExampleTests/LLVM.InTree/test/
Dsite.exp7 set prcontext "/usr/bin/tclsh8.4 /Volumes/Data/ddunbar/llvm/test/Scripts/prcontext.tcl"
10 set srcroot "/Volumes/Data/ddunbar/llvm"
11 set objroot "/Volumes/Data/ddunbar/llvm.obj.64"
12 set srcdir "/Volumes/Data/ddunbar/llvm/test"
13 set objdir "/Volumes/Data/ddunbar/llvm.obj.64/test"
16 …ers/ddunbar/llvm.obj.64/test -I/Volumes/Data/ddunbar/llvm.obj.64/include -I/Volumes/Data/ddunbar/l…
17 …ers/ddunbar/llvm.obj.64/test -I/Volumes/Data/ddunbar/llvm.obj.64/include -I/Volumes/Data/ddunbar/l…
18Volumes/Data/ddunbar/llvm.obj.64/include -I/Volumes/Data/ddunbar/llvm/include -I/Volumes/Data/ddun…
/external/swiftshader/third_party/LLVM/utils/lit/lit/ExampleTests/LLVM.OutOfTree/obj/test/
Dsite.exp7 set prcontext "/usr/bin/tclsh8.4 /Volumes/Data/ddunbar/llvm/test/Scripts/prcontext.tcl"
10 set srcroot "/Volumes/Data/ddunbar/llvm"
11 set objroot "/Volumes/Data/ddunbar/llvm.obj.64"
12 set srcdir "/Volumes/Data/ddunbar/llvm/test"
13 set objdir "/Volumes/Data/ddunbar/llvm.obj.64/test"
16 …ers/ddunbar/llvm.obj.64/test -I/Volumes/Data/ddunbar/llvm.obj.64/include -I/Volumes/Data/ddunbar/l…
17 …ers/ddunbar/llvm.obj.64/test -I/Volumes/Data/ddunbar/llvm.obj.64/include -I/Volumes/Data/ddunbar/l…
18Volumes/Data/ddunbar/llvm.obj.64/include -I/Volumes/Data/ddunbar/llvm/include -I/Volumes/Data/ddun…
/external/u-boot/common/spl/
Dspl_ubi.c19 struct ubispl_load volumes[2]; in spl_ubi_load_image() local
49 volumes[0].vol_id = CONFIG_SPL_UBI_LOAD_KERNEL_ID; in spl_ubi_load_image()
50 volumes[0].load_addr = (void *)CONFIG_SYS_LOAD_ADDR; in spl_ubi_load_image()
51 volumes[1].vol_id = CONFIG_SPL_UBI_LOAD_ARGS_ID; in spl_ubi_load_image()
52 volumes[1].load_addr = (void *)CONFIG_SYS_SPL_ARGS_ADDR; in spl_ubi_load_image()
54 ret = ubispl_load_volumes(&info, volumes, 2); in spl_ubi_load_image()
56 header = (struct image_header *)volumes[0].load_addr; in spl_ubi_load_image()
66 volumes[0].vol_id = CONFIG_SPL_UBI_LOAD_MONITOR_ID; in spl_ubi_load_image()
67 volumes[0].load_addr = (void *)header; in spl_ubi_load_image()
69 ret = ubispl_load_volumes(&info, volumes, 1); in spl_ubi_load_image()
/external/replicaisland/src/com/replica/replicaisland/
DGameObjectCollisionSystem.java25 * volumes from game objects each frame and performs a series of tests to see which of them
26 * overlap. Collisions are only considered between offending "attack" volumes and receiving
27 * "vulnerability" volumes. This implementation works by using a sweep-and-prune algorithm:
29 * overlaps. A bounding volume that encompasses all attack and vulnerability volumes is used for
30 * this test, and when an intersection is found the actual offending and receiving volumes are
70 * Adds a game object, and its related volumes, to the dynamic collision world for one frame.
71 * Once registered for collisions the object may damage other objects via attack volumes or
72 * receive damage from other volumes via vulnerability volumes.
77 * all of the attack and vulnerability volumes.
78 * @param attackVolumes A list of volumes that can hit other game objects. May be null.
[all …]
DAnimationFrame.java20 * A single animation frame. Frames contain a texture, a hold time, and collision volumes to
23 * frames. Note that an animation frame may have a null texture and null collision volumes. Null
24 * collision volumes will exclude that frame from collision detection and a null texture will
/external/u-boot/drivers/mtd/ubi/
Dubi-media.h72 * table of the UBI image. In this case, one of the volumes (e.g., the one
85 * Compatibility constants used by internal volumes.
224 * There are 2 sorts of volumes in UBI: user volumes and internal volumes.
225 * Internal volumes are not seen from outside and are used for various internal
227 * layout volume. Internal volumes are the main mechanism of UBI extensions.
229 * volumes have their own reserved range of IDs.
231 * The @compat field is only used for internal volumes and contains the "degree
232 * of their compatibility". It is always zero for user volumes. This field
242 * eraseblock if this is a static volume. In case of dynamic volumes, it does
248 * The @data_size field is used only for static volumes because UBI has to know
[all …]
Dvmt.c59 * out that the volume was removed from the @ubi->volumes array.
73 if (!ubi->volumes[vol->vol_id]) { in vol_attribute_show()
170 if (!ubi->volumes[i]) { in ubi_create_volume()
189 if (ubi->volumes[vol_id]) { in ubi_create_volume()
196 if (ubi->volumes[i] && in ubi_create_volume()
197 ubi->volumes[i]->name_len == req->name_len && in ubi_create_volume()
198 !strcmp(ubi->volumes[i]->name, req->name)) { in ubi_create_volume()
305 ubi->volumes[vol_id] = vol; in ubi_create_volume()
362 ubi_assert(vol == ubi->volumes[vol_id]); in ubi_remove_volume()
376 ubi->volumes[vol_id] = NULL; in ubi_remove_volume()
[all …]
Dvtbl.c30 * information about how much data static volumes contain.
66 * ubi_update_layout_vol - helper for updatting layout volumes on flash
74 layout_vol = ubi->volumes[vol_id2idx(ubi, UBI_LAYOUT_VOLUME_ID)]; in ubi_update_layout_vol()
119 * ubi_vtbl_rename_volumes - rename UBI volumes in the volume table.
123 * This function re-names multiple volumes specified in @req in the volume
268 ubi_err(ubi, "volumes %d and %d have the same name \"%s\"",
518 * init_volumes - initialize volume information for existing volumes.
523 * This function allocates volume description objects for existing volumes.
569 ubi_assert(!ubi->volumes[i]);
570 ubi->volumes[i] = vol;
[all …]
/external/u-boot/include/mtd/
Dubi-user.h32 * UBI volumes are created via the %UBI_IOCMKVOL ioctl command of UBI character
50 * UBI volumes re-name
53 * To re-name several volumes atomically at one go, the %UBI_IOCRNVOL command
125 * Block devices on UBI volumes
157 /* Re-name volumes */
199 /* Maximum amount of UBI volumes that can be re-named at one go */
218 * eraseblocks on dynamic volumes
286 * This structure is used by user-space programs when creating new volumes. The
287 * @used_bytes field is only necessary when creating static volumes.
321 * Re-sizing is possible for both dynamic and static volumes. But while dynamic
[all …]
/external/kernel-headers/original/uapi/mtd/
Dubi-user.h46 * UBI volumes are created via the %UBI_IOCMKVOL ioctl command of UBI character
64 * UBI volumes re-name
67 * To re-name several volumes atomically at one go, the %UBI_IOCRNVOL command
139 * Block devices on UBI volumes
171 /* Re-name volumes */
213 /* Maximum amount of UBI volumes that can be re-named at one go */
232 * eraseblocks on dynamic volumes
292 * open time. Only valid for static volumes and
314 * This structure is used by user-space programs when creating new volumes. The
315 * @used_bytes field is only necessary when creating static volumes.
[all …]
/external/mesa3d/src/gallium/state_trackers/nine/
Dvolumetexture9.c102 This->volumes = CALLOC(info->last_level + 1, sizeof(*This->volumes)); in NineVolumeTexture9_ctor()
103 if (!This->volumes) in NineVolumeTexture9_ctor()
123 &voldesc, &This->volumes[l]); in NineVolumeTexture9_ctor()
141 if (This->volumes) { in NineVolumeTexture9_dtor()
143 NineUnknown_Destroy(&This->volumes[l]->base); in NineVolumeTexture9_dtor()
144 FREE(This->volumes); in NineVolumeTexture9_dtor()
157 *pDesc = This->volumes[Level]->desc; in NineVolumeTexture9_GetLevelDesc()
169 NineUnknown_AddRef(NineUnknown(This->volumes[Level])); in NineVolumeTexture9_GetVolumeLevel()
170 *ppVolumeLevel = (IDirect3DVolume9 *)This->volumes[Level]; in NineVolumeTexture9_GetVolumeLevel()
187 return NineVolume9_LockBox(This->volumes[Level], pLockedVolume, pBox, in NineVolumeTexture9_LockBox()
[all …]
/external/python/google-api-python-client/docs/dyn/
Dbooks_v1.mylibrary.bookshelves.html78 <code><a href="books_v1.mylibrary.bookshelves.volumes.html">volumes()</a></code>
80 <p class="firstline">Returns the volumes Resource.</p>
87 <p class="firstline">Clears all volumes from a bookshelf.</p>
111 IOS_PREX - Volumes added from the PREX flow on iOS.
112 IOS_SEARCH - Volumes added from the Search flow on iOS.
113 ONBOARDING - Volumes added from the Onboarding flow.
119 <pre>Clears all volumes from a bookshelf.
142 "volumeCount": 42, # Number of volumes in this bookshelf.
168 "volumeCount": 42, # Number of volumes in this bookshelf.
Dbooks_v1.bookshelves.html78 <code><a href="books_v1.bookshelves.volumes.html">volumes()</a></code>
80 <p class="firstline">Returns the volumes Resource.</p>
105 "volumeCount": 42, # Number of volumes in this bookshelf.
132 "volumeCount": 42, # Number of volumes in this bookshelf.
Dbooks_v1.bookshelves.volumes.html75 …v1.bookshelves.html">bookshelves</a> . <a href="books_v1.bookshelves.volumes.html">volumes</a></h1>
79 <p class="firstline">Retrieves volumes in a specific bookshelf for the specified user.</p>
83 <pre>Retrieves volumes in a specific bookshelf for the specified user.
86 userId: string, ID of user for whom to retrieve bookshelf volumes. (required)
87 shelf: string, ID of bookshelf to retrieve volumes. (required)
97 …"totalItems": 42, # Total number of volumes found. This might be greater than the number of volume…
98 "items": [ # A list of volumes.
102 … read this volume on the Google Books site. Link will not allow users to read non-viewable volumes.
321 "kind": "books#volumes", # Resource type.
Dbooks_v1.mylibrary.bookshelves.volumes.html75 …lves.html">bookshelves</a> . <a href="books_v1.mylibrary.bookshelves.volumes.html">volumes</a></h1>
79 <p class="firstline">Gets volume information for volumes on a bookshelf.</p>
83 <pre>Gets volume information for volumes on a bookshelf.
86 shelf: string, The bookshelf ID or name retrieve volumes for. (required)
102 …"totalItems": 42, # Total number of volumes found. This might be greater than the number of volume…
103 "items": [ # A list of volumes.
107 … read this volume on the Google Books site. Link will not allow users to read non-viewable volumes.
326 "kind": "books#volumes", # Resource type.
Dbooks_v1.volumes.useruploaded.html75 …"books_v1.html">Books API</a> . <a href="books_v1.volumes.html">volumes</a> . <a href="books_v1.vo…
88 …volumeId: string, The ids of the volumes to be returned. If not specified all that match the proce…
91 …processingState: string, The processing state of the user uploaded volumes to be returned. (repeat…
101 …"totalItems": 42, # Total number of volumes found. This might be greater than the number of volume…
102 "items": [ # A list of volumes.
106 … read this volume on the Google Books site. Link will not allow users to read non-viewable volumes.
325 "kind": "books#volumes", # Resource type.
Dbooks_v1.volumes.mybooks.html75 …"books_v1.html">Books API</a> . <a href="books_v1.volumes.html">volumes</a> . <a href="books_v1.vo…
101 …processingState: string, The processing state of the user uploaded volumes to be returned. Applica…
111 …"totalItems": 42, # Total number of volumes found. This might be greater than the number of volume…
112 "items": [ # A list of volumes.
116 … read this volume on the Google Books site. Link will not allow users to read non-viewable volumes.
335 "kind": "books#volumes", # Resource type.
/external/tensorflow/tensorflow/python/layers/
Dconvolutional_test.py193 volumes = random_ops.random_uniform((5, depth, height, width, 4))
195 output = layer.apply(volumes)
204 volumes = array_ops.placeholder(dtypes.float32, (5, 6, 7, 9, None))
209 _ = layer.apply(volumes)
983 volumes = random_ops.random_uniform((5, depth, height, width, 32), seed=1)
985 conv_layers.conv3d_transpose(volumes, 4, 3, data_format='invalid')
989 volumes = random_ops.random_uniform((5, depth, height, width, 32), seed=1)
991 conv_layers.conv3d_transpose(volumes, 4, 3, strides=(1, 2))
994 conv_layers.conv3d_transpose(volumes, 4, 3, strides=None)
998 volumes = random_ops.random_uniform((5, depth, height, width, 32), seed=1)
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/ARM/
Ddebug-info-blocks.ll110 !2 = !DIFile(filename: "header.h", directory: "/Volumes/Sandbox/llvm")
114 !6 = !DIFile(filename: "header2.h", directory: "/Volumes/Sandbox/llvm")
118 !10 = !DIFile(filename: "header3.h", directory: "/Volumes/Sandbox/llvm")
123 !15 = !DIFile(filename: "Private.h", directory: "/Volumes/Sandbox/llvm")
128 !20 = !DIFile(filename: "header4.h", directory: "/Volumes/Sandbox/llvm")
132 !24 = !DIFile(filename: "MyLibrary.m", directory: "/Volumes/Sandbox/llvm")
148 !40 = !DIFile(filename: "MyLibrary.i", directory: "/Volumes/Sandbox/llvm")
169 !61 = !DIFile(filename: "header11.h", directory: "/Volumes/Sandbox/llvm")
173 !65 = !DIFile(filename: "NSO.h", directory: "/Volumes/Sandbox/llvm")
185 !77 = !DIFile(filename: "header12.h", directory: "/Volumes/Sandbox/llvm")
[all …]
/external/llvm/test/CodeGen/ARM/
Ddebug-info-blocks.ll116 !2 = !DIFile(filename: "header.h", directory: "/Volumes/Sandbox/llvm")
120 !6 = !DIFile(filename: "header2.h", directory: "/Volumes/Sandbox/llvm")
124 !10 = !DIFile(filename: "header3.h", directory: "/Volumes/Sandbox/llvm")
129 !15 = !DIFile(filename: "Private.h", directory: "/Volumes/Sandbox/llvm")
134 !20 = !DIFile(filename: "header4.h", directory: "/Volumes/Sandbox/llvm")
138 !24 = !DIFile(filename: "MyLibrary.m", directory: "/Volumes/Sandbox/llvm")
154 !40 = !DIFile(filename: "MyLibrary.i", directory: "/Volumes/Sandbox/llvm")
175 !61 = !DIFile(filename: "header11.h", directory: "/Volumes/Sandbox/llvm")
179 !65 = !DIFile(filename: "NSO.h", directory: "/Volumes/Sandbox/llvm")
191 !77 = !DIFile(filename: "header12.h", directory: "/Volumes/Sandbox/llvm")
[all …]
/external/u-boot/doc/
DREADME.ubi64 UBI: max. allowed volumes: 128
66 UBI: number of internal volumes: 1
67 UBI: number of user volumes: 1
131 UBI: max. allowed volumes: 128
133 UBI: number of internal volumes: 1
134 UBI: number of user volumes: 1
/external/u-boot/include/
Dubispl.h28 * Defines the maximum number of volumes in which UBISPL is
31 * want to load from the SPL anyway. So the volumes which can be
81 * ubispl_load_volumes - Scan flash and load volumes
83 * @lovls: Pointer to array of volumes to load
/external/eigen/unsupported/Eigen/src/BVH/
DBVAlgorithms.h34 for(; vBegin != vEnd; ++vBegin) //go through child volumes in intersect_helper()
86 …t BVH1::Volume &v1, const BVH2::Volume &v2) //returns true if product of volumes intersects the qu…
116 for(; vBegin1 != vEnd1; ++vBegin1) { //go through child volumes of first tree in BVIntersect()
118 for(vCur2 = vBegin2; vCur2 != vEnd2; ++vCur2) { //go through child volumes of second tree in BVIntersect()
131 for(vCur2 = vBegin2; vCur2 != vEnd2; ++vCur2) { //go through child volumes of second tree in BVIntersect()
170 for(; vBegin != vEnd; ++vBegin) { //go through child volumes in minimize_helper()
267 for(vCur2 = vBegin2; vCur2 != vEnd2; ++vCur2) { //go through child volumes of second tree in BVMinimize()
273 for(; vBegin1 != vEnd1; ++vBegin1) { //go through child volumes of first tree in BVMinimize()
281 for(vCur2 = vBegin2; vCur2 != vEnd2; ++vCur2) { //go through child volumes of second tree in BVMinimize()
/external/u-boot/cmd/
Dubi.c59 if (!ubi->volumes[i]) in display_volume_info()
61 ubi_dump_vol_info(ubi->volumes[i]); in display_volume_info()
78 ubi_msg("max. allowed volumes: %d", ubi->vtbl_slots); in display_ubi_info()
80 ubi_msg("number of internal volumes: %d", UBI_INT_VOL_COUNT); in display_ubi_info()
81 ubi_msg("number of user volumes: %d", in display_ubi_info()
110 if (!ubi->volumes[i]) in ubi_check()
113 if (!ubi_check_volumename(ubi->volumes[i], name)) in ubi_check()
201 vol = ubi->volumes[i]; in ubi_find_volume()
240 ubi->volumes[vol->vol_id]->eba_tbl = NULL; in ubi_remove_vol()
241 ubi->volumes[vol->vol_id] = NULL; in ubi_remove_vol()
/external/u-boot/include/linux/mtd/
Dubi.h52 * @corrupted: non-zero if the volume is corrupted (static volumes only)
61 * The @corrupted flag is only relevant to static volumes and is always zero
82 * volumes and contain the number of bytes stored in this static volume and how
83 * many eraseblock this data occupies. In case of dynamic volumes, the
161 * Volumes of this UBI device may have smaller logical eraseblock size if their
227 /* UBI descriptor given to users when they open UBI volumes */

12345678910>>...16