/external/tensorflow/tensorflow/core/framework/ |
D | variant_op_copy_test.cc | 61 Tensor stored; member 63 void Encode(VariantTensorData* data) const { data->tensors_ = {stored}; } in Encode() 66 stored = data.tensors_[0]; in Decode() 73 return copy(from.stored, &(to->stored)); in CopyCPUToGPU() 79 return copy(from.stored, &(to->stored)); in CopyGPUToCPU() 85 return copy(from.stored, &(to->stored)); in CopyGPUToGPU() 169 from.stored = Tensor(DT_INT64, TensorShape({})); in TEST() 170 from.stored.scalar<int64>()() = 0xdeadbeef; in TEST() 192 EXPECT_EQ(to->stored.dtype(), DT_INT64); in TEST() 193 EXPECT_EQ(0xdeadbeef, to->stored.scalar<int64>()()); in TEST() [all …]
|
/external/xz-java/src/org/tukaani/xz/index/ |
D | IndexHash.java | 63 IndexHash stored = new IndexHash(); in validate() local 69 stored.add(unpaddedSize, uncompressedSize); in validate() 74 if (stored.blocksSum > blocksSum in validate() 75 || stored.uncompressedSum > uncompressedSum in validate() 76 || stored.indexListSize > indexListSize) in validate() 80 if (stored.blocksSum != blocksSum in validate() 81 || stored.uncompressedSum != uncompressedSum in validate() 82 || stored.indexListSize != indexListSize in validate() 83 || !Arrays.equals(stored.hash.finish(), hash.finish())) in validate()
|
/external/eigen/unsupported/Eigen/src/BVH/ |
D | BVAlgorithms.h | 49 …intersector_helper1(const Object2 &inStored, Intersector &in) : stored(inStored), intersector(in) … in intersector_helper1() 50 …bool intersectVolume(const Volume1 &vol) { return intersector.intersectVolumeObject(vol, stored); } in intersectVolume() 51 …bool intersectObject(const Object1 &obj) { return intersector.intersectObjectObject(obj, stored); } in intersectObject() 52 Object2 stored; member 61 …intersector_helper2(const Object1 &inStored, Intersector &in) : stored(inStored), intersector(in) … in intersector_helper2() 62 …bool intersectVolume(const Volume2 &vol) { return intersector.intersectObjectVolume(stored, vol); } in intersectVolume() 63 …bool intersectObject(const Object2 &obj) { return intersector.intersectObjectObject(stored, obj); } in intersectObject() 64 Object1 stored; member 186 minimizer_helper1(const Object2 &inStored, Minimizer &m) : stored(inStored), minimizer(m) {} in minimizer_helper1() 187 …Scalar minimumOnVolume(const Volume1 &vol) { return minimizer.minimumOnVolumeObject(vol, stored); } in minimumOnVolume() [all …]
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_setup.c | 131 setup->fs.stored = NULL; in lp_setup_reset() 1011 boolean new_scene = (setup->fs.stored == NULL); in try_update_scene_state() 1024 struct lp_jit_viewport *stored; in try_update_scene_state() local 1026 stored = (struct lp_jit_viewport *) in try_update_scene_state() 1029 if (!stored) { in try_update_scene_state() 1034 memcpy(stored, setup->viewports, sizeof setup->viewports); in try_update_scene_state() 1036 setup->fs.current.jit_context.viewports = stored; in try_update_scene_state() 1041 uint8_t *stored; in try_update_scene_state() local 1049 stored = lp_scene_alloc_aligned(scene, size, LP_MIN_VECTOR_ALIGN); in try_update_scene_state() 1051 if (!stored) { in try_update_scene_state() [all …]
|
/external/eigen/doc/ |
D | StorageOrders.dox | 13 The entries of a matrix form a two-dimensional grid. However, when the matrix is stored in memory, … 16 We say that a matrix is stored in \b row-major order if it is stored row by row. The entire first r… 17 stored first, followed by the entire second row, and so on. Consider for example the matrix 27 If this matrix is stored in row-major order, then the entries are laid out in memory as follows: 31 On the other hand, a matrix is stored in \b column-major order if it is stored column by column, st… 32 …ire first column, followed by the entire second column, and so on. If the above matrix is stored in 56 parameter is set to \c RowMajor, then the matrix or array is stored in row-major order; if it is se… 57 \c ColMajor, then it is stored in column-major order. This mechanism is used in the above Eigen pro… 77 …- Algorithms that traverse a matrix row by row will go faster when the matrix is stored in row-maj…
|
/external/zlib/src/examples/ |
D | gzlog.c | 296 uint stored; /* bytes currently in last stored block */ member 426 log->stored = PULL2(buf + HEAD + 32); in log_head() 448 PUT2(ext + 32, log->stored); in log_mark() 489 PUT2(buf + 2, log->stored); in log_last() 490 PUT2(buf + 4, log->stored ^ 0xffff); in log_last() 493 lseek(log->fd, log->stored, SEEK_CUR) < 0 ? -1 : 0; in log_last() 517 put = (MAX_STORE << 10) - log->stored; in log_append() 526 log->stored += put; in log_append() 538 log->last += 4 + log->stored + 1; in log_append() 539 log->stored = 0; in log_append() [all …]
|
/external/clang/test/CodeGenCXX/ |
D | mangle-subst-std.cpp | 54 basic_istream(int x) : basic_ios<charT, traits>(x), stored(x) { } in basic_istream() 56 int stored; member 60 basic_ostream(int x) : basic_ios<charT, traits>(x), stored(x) { } in basic_ostream() 62 float stored; member
|
/external/python/cpython2/Doc/c-api/ |
D | capsule.rst | 54 If this capsule will be stored as an attribute of a module, the *name* should 61 Retrieve the *pointer* stored in the capsule. On failure, set an exception 64 The *name* parameter must compare exactly to the name stored in the capsule. 65 If the name stored in the capsule is *NULL*, the *name* passed in must also 72 Return the current destructor stored in the capsule. On failure, set an 82 Return the current context stored in the capsule. On failure, set an 92 Return the current name stored in the capsule. On failure, set an exception 104 ``module.attribute``. The *name* stored in the capsule must match this 117 stored in it, and its internal name matches the *name* parameter. (See 146 outlive the capsule. If the previous *name* stored in the capsule was not
|
/external/python/cpython3/Doc/c-api/ |
D | capsule.rst | 54 If this capsule will be stored as an attribute of a module, the *name* should 61 Retrieve the *pointer* stored in the capsule. On failure, set an exception 64 The *name* parameter must compare exactly to the name stored in the capsule. 65 If the name stored in the capsule is *NULL*, the *name* passed in must also 72 Return the current destructor stored in the capsule. On failure, set an 82 Return the current context stored in the capsule. On failure, set an 92 Return the current name stored in the capsule. On failure, set an exception 104 ``module.attribute``. The *name* stored in the capsule must match this 117 stored in it, and its internal name matches the *name* parameter. (See 146 outlive the capsule. If the previous *name* stored in the capsule was not
|
/external/u-boot/doc/ |
D | README.at91 | 20 U-Boot environment variables can be stored at different places: 42 U-Boot environment variables can be stored at different places: 63 U-Boot environment variables can be stored at different places: 86 U-Boot environment variables can be stored at different places: 103 U-Boot environment variables can be stored at different places: 120 U-Boot environment variables can be stored at different places: 141 U-Boot environment variables can be stored at different places:
|
D | README.sha1 | 16 calculates and prints the SHA1 sum, from the Image stored in Flash 19 check, if the SHA1 sum from the Image stored in Flash is correct 30 (for this example we use the Image from Flash, stored at 0xfffa0000 and 36 The SHA1 sum is stored in Flash at:
|
D | README.enetaddr | 6 and stored. This document covers proper usage of each location and the moving 13 Here are the places where MAC addresses might be stored: 54 If the hardware design mandates that the MAC address is stored in some special 89 Look up an environment variable and convert the stored address. If the address 99 /* enetaddr is now set to the value stored in the ethaddr env var */
|
/external/tensorflow/tensorflow/core/util/ |
D | stat_summarizer.cc | 57 const auto& stored = (*outputs)[slot]; in Validate() local 61 (stored.dtype() == current.dtype()) && in Validate() 62 (stored.shape().dim_size() == current.shape().dim_size()); in Validate() 65 for (int i = 0; i < stored.shape().dim_size(); ++i) { in Validate() 66 if (stored.shape().dim(i).size() != current.shape().dim(i).size()) { in Validate()
|
D | saved_tensor_slice.proto | 15 // information. The name is also stored in the SaveSlice message for ease of 49 // It is always stored at the beginning of each checkpoint file. 70 // The raw data of the slice is stored as a TensorProto. Only raw data are 71 // stored (we don't fill in fields such as dtype or tensor_shape).
|
/external/llvm/test/ExecutionEngine/ |
D | test-interp-vec-loadstore.ll | 37 ; load stored scalars 43 ; load stored vector 52 ; compare extracted data with stored constants 86 ; load stored vector 88 ; load stored scalars 130 ; load stored vector 132 ; load stored scalars
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/ExecutionEngine/ |
D | test-interp-vec-loadstore.ll | 37 ; load stored scalars 43 ; load stored vector 52 ; compare extracted data with stored constants 86 ; load stored vector 88 ; load stored scalars 130 ; load stored vector 132 ; load stored scalars
|
/external/u-boot/doc/uImage.FIT/ |
D | command_syntax_extensions.txt | 88 Ad. 9. Similar to case 2: boot kernel stored in <subimg1> from the image at 96 Ad. 11. Equivalent to case 5: boot kernel stored in <subimg1> from the image 101 Ad. 12. Equivalent to case 6: boot kernel stored in <subimg1> from the image 110 Ad. 14. Equivalent to case 7: boot kernel stored in <subimg1> from the image 141 - boot kernel "kernel-1" stored in a new uImage located at 200000: 152 some other new uImage stored at address 800000: 156 "fdt-1", both stored in some other new uImage located at 800000: 159 - boot kernel "kernel-2" with initrd "ramdisk-2", both stored in a new uImage 160 at address 200000, with a raw FDT blob stored at address 600000:
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_GetSessionHandle.pbtxt | 6 The tensor to be stored. 12 The handle for the tensor stored in the session state, represented
|
D | api_def_GetSessionHandleV2.pbtxt | 6 The tensor to be stored. 12 The handle for the tensor stored in the session state, represented
|
D | api_def_RestoreV2.pbtxt | 33 those stored in the checkpoint. 47 specific slices of stored tensors, "shape_and_slices" should be non-empty 50 Callers must ensure all the named tensors are indeed stored in the checkpoint.
|
/external/curl/docs/cmdline-opts/ |
D | xattr.d | 5 metadata in extended file attributes. Currently, the URL is stored in the 6 xdg.origin.url attribute and, for HTTP, the content type is stored in
|
/external/u-boot/board/toradex/common/ |
D | Kconfig | 8 The Toradex config block stored production data on the on-module 52 device the config block is stored on. 59 within the flash device the config block is stored on.
|
/external/python/cpython2/Doc/library/ |
D | sndhdr.rst | 19 what type of sound data is stored in a file, they return a tuple ``(type, 33 Determines the type of sound data stored in the file *filename* using 40 Determines the type of sound data stored in a file based on the file header.
|
/external/python/cpython3/Doc/library/ |
D | sndhdr.rst | 20 what type of sound data is stored in a file, they return a 35 Determines the type of sound data stored in the file *filename* using 45 Determines the type of sound data stored in a file based on the file header.
|
/external/cros/system_api/dbus/login_manager/ |
D | policy_descriptor.proto | 14 // |account_id| must be empty. Policy is stored in a device-wide root-owned 18 // |account_id| references a user account. Policy is stored on the user's 27 // |account_id| references a device local account. Policy is stored in a
|