/external/replicaisland/src/com/replica/replicaisland/ |
D | GameObjectCollisionSystem.java | 25 * 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 …]
|
D | AnimationFrame.java | 20 * 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
|
D | DynamicCollisionComponent.java | 21 * A component to include dynamic collision volumes (such as those produced every frame from 22 * animating sprites) in the dynamic collision world. Given a set of "attack" volumes and 23 * "vulnerability" volumes (organized such that only attack vs vulnerability intersections result
|
D | CollisionVolume.java | 23 * Volumes can be tested for intersection against other volumes, and can be grown to contain a set 24 * of other volumes. The volume itself is stored in object-relative space (in terms of offsets from
|
D | AABoxCollisionVolume.java | 20 * An Axis-Aligned rectangular collision volume. This code treats other volumes as if they are 66 * volumes intersect. This test treats the other volume as an AABox. 70 * @return true if the volumes overlap, false otherwise.
|
/external/mesa3d/src/gallium/frontends/nine/ |
D | volumetexture9.c | 103 This->volumes = CALLOC(info->last_level + 1, sizeof(*This->volumes)); in NineVolumeTexture9_ctor() 104 if (!This->volumes) in NineVolumeTexture9_ctor() 124 &voldesc, &This->volumes[l]); in NineVolumeTexture9_ctor() 142 if (This->volumes) { in NineVolumeTexture9_dtor() 144 if (This->volumes[l]) in NineVolumeTexture9_dtor() 145 NineUnknown_Destroy(&This->volumes[l]->base); in NineVolumeTexture9_dtor() 146 FREE(This->volumes); in NineVolumeTexture9_dtor() 159 *pDesc = This->volumes[Level]->desc; in NineVolumeTexture9_GetLevelDesc() 171 NineUnknown_AddRef(NineUnknown(This->volumes[Level])); in NineVolumeTexture9_GetVolumeLevel() 172 *ppVolumeLevel = (IDirect3DVolume9 *)This->volumes[Level]; in NineVolumeTexture9_GetVolumeLevel() [all …]
|
/external/kernel-headers/original/uapi/mtd/ |
D | ubi-user.h | 46 * 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 */ 218 /* Maximum amount of UBI volumes that can be re-named at one go */ 237 * eraseblocks on dynamic volumes 297 * open time. Only valid for static volumes and 319 * This structure is used by user-space programs when creating new volumes. The 320 * @used_bytes field is only necessary when creating static volumes. [all …]
|
/external/python/google-api-python-client/googleapiclient/discovery_cache/documents/ |
D | baremetalsolution.v1alpha1.json | 394 "volumes": { object 398 … "flatPath": "v1alpha1/projects/{projectsId}/locations/{locationsId}/volumes/{volumesId}", 400 "id": "baremetalsolution.projects.locations.volumes.get", 408 "pattern": "^projects/[^/]+/locations/[^/]+/volumes/[^/]+$", 422 "description": "List the volumes for the specified project", 423 "flatPath": "v1alpha1/projects/{projectsId}/locations/{locationsId}/volumes", 425 "id": "baremetalsolution.projects.locations.volumes.list", 442 "description": "Required. The location to list Volumes in.", 449 "path": "v1alpha1/{+parent}/volumes", 459 … "flatPath": "v1alpha1/projects/{projectsId}/locations/{locationsId}/volumes/{volumesId}", [all …]
|
D | books.v1.json | 175 "volumes": { object 178 "description": "Retrieves volumes in a specific bookshelf for the specified user.", 179 "flatPath": "books/v1/users/{userId}/bookshelves/{shelf}/volumes", 181 "id": "books.bookshelves.volumes.list", 195 "description": "ID of bookshelf to retrieve volumes.", 218 "description": "ID of user for whom to retrieve bookshelf volumes.", 224 "path": "books/v1/users/{userId}/bookshelves/{shelf}/volumes", 226 "$ref": "Volumes" 437 "flatPath": "books/v1/volumes/{volumeId}/layersummary/{summaryId}", 468 "path": "books/v1/volumes/{volumeId}/layersummary/{summaryId}", [all …]
|
/external/llvm/test/CodeGen/ARM/ |
D | debug-info-blocks.ll | 116 !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/tensorflow/tensorflow/python/keras/legacy_tf_layers/ |
D | convolutional_test.py | 192 volumes = random_ops.random_uniform((5, depth, height, width, 4)) 194 output = layer.apply(volumes) 204 volumes = array_ops.placeholder(dtypes.float32, (5, 6, 7, 9, None)) 209 _ = layer.apply(volumes) 991 volumes = random_ops.random_uniform((5, depth, height, width, 32), seed=1) 993 conv_layers.conv3d_transpose(volumes, 4, 3, data_format='invalid') 997 volumes = random_ops.random_uniform((5, depth, height, width, 32), seed=1) 999 conv_layers.conv3d_transpose(volumes, 4, 3, strides=(1, 2)) 1002 conv_layers.conv3d_transpose(volumes, 4, 3, strides=None) 1006 volumes = random_ops.random_uniform((5, depth, height, width, 32), seed=1) [all …]
|
/external/python/google-api-python-client/docs/dyn/ |
D | baremetalsolution_v1alpha1.projects.snapshotSchedulePolicies.html | 123 "volumes": [ # The names of the Volumes this policy is associated with. 146 "volumes": [ # The names of the Volumes this policy is associated with. 194 "volumes": [ # The names of the Volumes this policy is associated with. 229 "volumes": [ # The names of the Volumes this policy is associated with. 270 "volumes": [ # The names of the Volumes this policy is associated with. 294 "volumes": [ # The names of the Volumes this policy is associated with.
|
D | books_v1.mylibrary.bookshelves.html | 78 <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> 114 IOS_PREX - Volumes added from the PREX flow on iOS. 115 IOS_SEARCH - Volumes added from the Search flow on iOS. 116 ONBOARDING - Volumes added from the Onboarding flow. 132 <pre>Clears all volumes from a bookshelf. 178 "volumeCount": 42, # Number of volumes in this bookshelf. 208 "volumeCount": 42, # Number of volumes in this bookshelf.
|
D | books_v1.bookshelves.html | 78 <code><a href="books_v1.bookshelves.volumes.html">volumes()</a></code> 80 <p class="firstline">Returns the volumes Resource.</p> 122 "volumeCount": 42, # Number of volumes in this bookshelf. 153 "volumeCount": 42, # Number of volumes in this bookshelf.
|
D | baremetalsolution_v1alpha1.projects.locations.volumes.html | 75 …cations</a> . <a href="baremetalsolution_v1alpha1.projects.locations.volumes.html">volumes</a></h1> 78 …<code><a href="baremetalsolution_v1alpha1.projects.locations.volumes.snapshots.html">snapshots()</… 90 <p class="firstline">List the volumes for the specified project</p> 136 <pre>List the volumes for the specified project 139 parent: string, Required. The location to list Volumes in. (required) 152 "volumes": [ # The volumes registered in this project.
|
D | baremetalsolution_v1alpha1.projects.locations.html | 88 <code><a href="baremetalsolution_v1alpha1.projects.locations.volumes.html">volumes()</a></code> 90 <p class="firstline">Returns the volumes Resource.</p> 150 "volumes": [ # Volumes to be created. 226 "volumes": [ # Volumes to be created.
|
D | books_v1.bookshelves.volumes.html | 75 …v1.bookshelves.html">bookshelves</a> . <a href="books_v1.bookshelves.volumes.html">volumes</a></h1> 82 <p class="firstline">Retrieves volumes in a specific bookshelf for the specified user.</p> 91 <pre>Retrieves volumes in a specific bookshelf for the specified user. 94 userId: string, ID of user for whom to retrieve bookshelf volumes. (required) 95 shelf: string, ID of bookshelf to retrieve volumes. (required) 109 "items": [ # A list of volumes. 146 … read this volume on the Google Books site. Link will not allow users to read non-viewable volumes. 337 …quot;totalItems": 42, # Total number of volumes found. This might be greater than the number …
|
D | books_v1.volumes.useruploaded.html | 75 …"books_v1.html">Books API</a> . <a href="books_v1.volumes.html">volumes</a> . <a href="books_v1.vo… 96 …processingState: string, The processing state of the user uploaded volumes to be returned. (repeat… 104 …volumeId: string, The ids of the volumes to be returned. If not specified all that match the proce… 114 "items": [ # A list of volumes. 151 … read this volume on the Google Books site. Link will not allow users to read non-viewable volumes. 342 …quot;totalItems": 42, # Total number of volumes found. This might be greater than the number …
|
/external/skia/infra/bots/task_drivers/push_apps_from_skia_image/ |
D | push_apps_from_skia_image.go | 64 volumes := []string{ 69 if err := dkr.Run(ctx, releaseImg, skiaCopyCmd, volumes, nil); err != nil { 99 return cleanupTempFiles(ctx, dkr, releaseImg, volumes) 102 func cleanupTempFiles(ctx context.Context, dkr *docker.Docker, image string, volumes []string) erro… 106 return dkr.Run(ctx, image, cleanupCmd, volumes, nil) 119 volumes := []string{ 128 if err := dkr.Run(ctx, doxygenImg, doxygenCmd, volumes, env); err != nil { 158 return cleanupTempFiles(ctx, dkr, doxygenImg, volumes)
|
/external/eigen/unsupported/Eigen/src/BVH/ |
D | BVAlgorithms.h | 34 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/oss-fuzz/infra/cifuzz/ |
D | docker.py | 86 # Don't map specific volumes if in a docker container, it breaks when 88 docker_args += ['--volumes-from', docker_container] 111 # --volumes-from) is used for mapping volumes. It will break production.
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | extract_volume_patches_grad_test.py | 95 volumes = variables.Variable( 98 tape.watch(volumes) 100 volumes, 107 gradients = tape.gradient(patches, volumes)
|
/external/llvm/test/DebugInfo/X86/ |
D | bitfields-dwarf4.ll | 31 !1 = !DIFile(filename: "bitfield.c", directory: "/Volumes/Data/llvm") 60 !11 = !DIFile(filename: "/Volumes/Data/llvm/_build.ninja.release/bin/../lib/clang/3.9.0/include/std…
|
/external/python/google-api-python-client/docs/ |
D | mocks.md | 23 request = service.volumes().list(source='public', q='android') 95 books_android = # Saved data from a request to list android volumes 104 request = service.volumes().list(source='public', q='android')
|
/external/ltp/testcases/kernel/fs/fs_maim/ |
D | README | 46 add maimlvm to stress lvm volumes 47 add maimevms to stress evms volumes
|