Home
last modified time | relevance | path

Searched refs:stored (Results 1 – 25 of 1739) sorted by relevance

12345678910>>...70

/external/xz-java/src/org/tukaani/xz/index/
DIndexHash.java63 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/tensorflow/tensorflow/core/framework/
Dvariant_op_copy_test.cc61 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_t>()() = 0xdeadbeef; in TEST()
192 EXPECT_EQ(to->stored.dtype(), DT_INT64); in TEST()
193 EXPECT_EQ(0xdeadbeef, to->stored.scalar<int64_t>()()); in TEST()
[all …]
/external/eigen/unsupported/Eigen/src/BVH/
DBVAlgorithms.h49 …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/eigen/doc/
DStorageOrders.dox13 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/mbedtls/tests/suites/
Dtest_suite_psa_its.function8 * stored, this may indicate that the key store is changing in a
155 char stored[40];
159 memset( stored, '.', sizeof( stored ) );
162 mbedtls_snprintf( stored, sizeof( stored ),
164 PSA_ASSERT( psa_its_set_wrap( uid, sizeof( stored ), stored, 0 ) );
169 mbedtls_snprintf( stored, sizeof( stored ),
171 PSA_ASSERT( psa_its_get( uid, 0, sizeof( stored ), retrieved, &ret_len ) );
173 stored, sizeof( stored ) );
/external/openthread/third_party/mbedtls/repo/tests/suites/
Dtest_suite_psa_its.function150 char stored[40];
154 memset( stored, '.', sizeof( stored ) );
157 mbedtls_snprintf( stored, sizeof( stored ),
159 PSA_ASSERT( psa_its_set_wrap( uid, sizeof( stored ), stored, 0 ) );
164 mbedtls_snprintf( stored, sizeof( stored ),
166 PSA_ASSERT( psa_its_get( uid, 0, sizeof( stored ), retrieved, &ret_len ) );
168 stored, sizeof( stored ) );
/external/rust/crates/ciborium-ll/src/
Dseg.rs63 stored: usize, field
73 if bytes.len() <= self.stored { in parse()
78 bytes[..self.stored].clone_from_slice(&self.buffer[..self.stored]); in parse()
94 self.stored = invalid_len; in parse()
103 self.stored in saved()
/external/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_setup.c132 setup->fs.stored = NULL; in lp_setup_reset()
1121 boolean new_scene = (setup->fs.stored == NULL); in try_update_scene_state()
1134 struct lp_jit_viewport *stored; in try_update_scene_state() local
1136 stored = (struct lp_jit_viewport *) in try_update_scene_state()
1139 if (!stored) { in try_update_scene_state()
1144 memcpy(stored, setup->viewports, sizeof setup->viewports); in try_update_scene_state()
1146 setup->fs.current.jit_context.viewports = stored; in try_update_scene_state()
1151 uint8_t *stored; in try_update_scene_state() local
1159 stored = lp_scene_alloc_aligned(scene, size, LP_MIN_VECTOR_ALIGN); in try_update_scene_state()
1161 if (!stored) { in try_update_scene_state()
[all …]
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_RetrieveAllTPUEmbeddingParameters.pbtxt8 stored embedding table parameters.
15 first auxiliary optimization parameter stored. Elements are
24 second auxiliary optimization parameter stored. Elements are
33 third auxiliary optimization parameter stored. Elements are
42 fourth auxiliary optimization parameter stored. Elements are
51 fifth auxiliary optimization parameter stored. Elements are
60 six auxiliary optimization parameter stored. Elements are
69 seventh auxiliary optimization parameter stored. Elements are
Dapi_def_GetSessionHandleV2.pbtxt6 The tensor to be stored.
12 The handle for the tensor stored in the session state, represented
Dapi_def_GetSessionHandle.pbtxt6 The tensor to be stored.
12 The handle for the tensor stored in the session state, represented
Dapi_def_RestoreV2.pbtxt33 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/rust/crates/libz-sys/src/zlib/examples/
Dgzlog.c296 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/
Dmangle-subst-std.cpp54 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/libchrome/build/
Dget_syzygy_binaries.py110 def _BuildActualState(stored, revision, output_dir): argument
118 for relpath, md5 in stored['contents'].items():
127 def _StatesAreConsistent(stored, actual): argument
131 if stored['revision'] != actual['revision']:
134 cont_stored = stored['contents']
151 stored = _LoadState(output_dir)
152 if not _StateIsValid(stored):
156 actual = _BuildActualState(stored, revision, output_dir)
160 return (stored, False)
162 if not _StatesAreConsistent(stored, actual):
[all …]
/external/cronet/net/disk_cache/blockfile/
Dentry_impl.cc600 EntryStore* stored = entry_.Data(); in SanityCheck() local
601 if (!stored->rankings_node || stored->key_len <= 0) in SanityCheck()
604 if (stored->reuse_count < 0 || stored->refetch_count < 0) in SanityCheck()
607 Addr rankings_addr(stored->rankings_node); in SanityCheck()
611 Addr next_addr(stored->next); in SanityCheck()
618 if (stored->state > ENTRY_DOOMED || stored->state < ENTRY_NORMAL) in SanityCheck()
621 Addr key_addr(stored->long_key); in SanityCheck()
622 if ((stored->key_len <= kMaxInternalKeyLength && key_addr.is_initialized()) || in SanityCheck()
623 (stored->key_len > kMaxInternalKeyLength && !key_addr.is_initialized())) in SanityCheck()
630 ((stored->key_len < kMaxBlockSize && key_addr.is_separate_file()) || in SanityCheck()
[all …]
/external/python/cpython2/Doc/c-api/
Dcapsule.rst54 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/
Dcapsule.rst55 If this capsule will be stored as an attribute of a module, the *name* should
62 Retrieve the *pointer* stored in the capsule. On failure, set an exception
65 The *name* parameter must compare exactly to the name stored in the capsule.
66 If the name stored in the capsule is ``NULL``, the *name* passed in must also
73 Return the current destructor stored in the capsule. On failure, set an
83 Return the current context stored in the capsule. On failure, set an
93 Return the current name stored in the capsule. On failure, set an exception
105 ``module.attribute``. The *name* stored in the capsule must match this
118 stored in it, and its internal name matches the *name* parameter. (See
147 outlive the capsule. If the previous *name* stored in the capsule was not
/external/trace-cmd/Documentation/trace-cmd/
Dtrace-cmd-dump.1.txt29 Print the header page information, stored in the file.
31 Print the event header information, stored in the file.
35 Print information of event systems, stored in the file - name and number of
38 Print formats of all events, stored in the file.
42 Print trace_printk() format strings, stored in the file.
46 Print all options, stored in the file.
50 Print the trace clock, used for timestamp of the tracing events, stored in the file.
/external/tensorflow/tensorflow/core/util/
Dstat_summarizer.cc57 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()
/external/pigweed/pw_kvs/
Ddocs.rst16 The KVS system stores key and value data pairs. The key value pairs are stored
32 KVS system state can be derived from the stored KV entries. Current KVS system
33 state is determined at boot from flash-stored KV entries and then maintained in
40 each KVS update transaction. When determining system state from flash-stored KV
42 the “current” entry of the key. All stored entries of the same key with lower
45 Updates/rewrites of a key that has been previously stored is done as a new KV
47 internal state is updated to reflect the new entry. The previously stored KV
97 KVS requires more storage space than the size of the key-value data stored.
101 KVS works poorly with stored data being more than 75% of the available
102 storage. It works best with stored data being less than 50% of the available
[all …]
/external/llvm/test/ExecutionEngine/
Dtest-interp-vec-loadstore.ll37 ; 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/autotest/server/site_tests/firmware_GSCAPROV1Trigger/
Dfirmware_GSCAPROV1Trigger.py166 stored = set(re.findall(self.STORED_DIGEST_RE, contents))
167 logging.info('Stored: %r', stored)
174 (stored, calculated))
181 (stored, calculated))
/external/pigweed/pw_snapshot/
Ddocs.rst35 snapshot was captured. The serialized proto can then be stored and transfered
46 is stored as a serialized Snapshot proto message for later retrieval.
47 #. **Device resumes** - After a snapshot is stored, the device resumes normal
50 #. **Snapshot retrieved from device** - During normal device operation, stored
/external/webrtc/docs/native-code/rtp-hdrext/video-layers-allocation00/
DREADME.md68 layers. Values are stored in ascending order of spatial id. Zero-padded to byte
71 Target bitrate in kbps. Values are stored using leb128 encoding [1]. One value per
72 temporal layer. Values are stored in (RTP stream id, spatial id, temporal id)
80 rate 8-bit per spatial layer per RTP stream. Values are stored in (RTP stream

12345678910>>...70