/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/chromium_org/chrome/common/extensions/docs/server2/ |
D | app_yaml_helper.py | 95 stored = self._store.Get(app_version).Get() 96 if stored is None: 97 stored = self._GetFirstRevisionGreaterThanImpl(app_version) 98 assert stored is not None 99 self._store.Set(app_version, stored) 100 return stored
|
/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/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
D | lp_setup.c | 125 setup->fs.stored = NULL; in lp_setup_reset() 778 boolean new_scene = (setup->fs.stored == NULL); in try_update_scene_state() 784 uint8_t *stored; in try_update_scene_state() local 787 stored = lp_scene_alloc_aligned(scene, 4 * 16, 16); in try_update_scene_state() 788 if (!stored) { in try_update_scene_state() 797 stored[i*16 + j] = c; in try_update_scene_state() 800 setup->blend_color.stored = stored; in try_update_scene_state() 801 setup->fs.current.jit_context.blend_color = setup->blend_color.stored; in try_update_scene_state() 819 void *stored; in try_update_scene_state() local 821 stored = lp_scene_alloc(scene, current_size); in try_update_scene_state() [all …]
|
D | lp_setup_context.h | 124 const struct lp_rast_state *stored; /**< what's in the scene */ member 138 uint8_t *stored; member
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_setup.c | 125 setup->fs.stored = NULL; in lp_setup_reset() 778 boolean new_scene = (setup->fs.stored == NULL); in try_update_scene_state() 784 uint8_t *stored; in try_update_scene_state() local 787 stored = lp_scene_alloc_aligned(scene, 4 * 16, 16); in try_update_scene_state() 788 if (!stored) { in try_update_scene_state() 797 stored[i*16 + j] = c; in try_update_scene_state() 800 setup->blend_color.stored = stored; in try_update_scene_state() 801 setup->fs.current.jit_context.blend_color = setup->blend_color.stored; in try_update_scene_state() 819 void *stored; in try_update_scene_state() local 821 stored = lp_scene_alloc(scene, current_size); in try_update_scene_state() [all …]
|
D | lp_setup_context.h | 124 const struct lp_rast_state *stored; /**< what's in the scene */ member 138 uint8_t *stored; member
|
/external/chromium_org/build/ |
D | get_syzygy_binaries.py | 120 def _BuildActualState(stored, revision, output_dir): argument 128 for relpath, md5 in stored['contents'].iteritems(): 137 def _StatesAreConsistent(stored, actual): argument 141 if stored['revision'] != actual['revision']: 144 cont_stored = stored['contents'] 161 stored = _LoadState(output_dir) 162 if not _StateIsValid(stored): 166 actual = _BuildActualState(stored, revision, output_dir) 170 return (stored, False) 172 if not _StatesAreConsistent(stored, actual): [all …]
|
/external/clang/test/CodeGenCXX/ |
D | mangle-subst-std.cpp | 53 basic_istream(int x) : basic_ios<charT, traits>(x), stored(x) { } in basic_istream() 55 int stored; member 59 basic_ostream(int x) : basic_ios<charT, traits>(x), stored(x) { } in basic_ostream() 61 float stored; member
|
/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/chromium_org/net/disk_cache/blockfile/ |
D | entry_impl_v3.cc | 338 EntryStore* stored = entry_.Data(); in SanityCheck() local 339 if (!stored->rankings_node || stored->key_len <= 0) in SanityCheck() 342 if (stored->reuse_count < 0 || stored->refetch_count < 0) in SanityCheck() 345 Addr rankings_addr(stored->rankings_node); in SanityCheck() 349 Addr next_addr(stored->next); in SanityCheck() 356 if (stored->state > ENTRY_DOOMED || stored->state < ENTRY_NORMAL) in SanityCheck() 359 Addr key_addr(stored->long_key); in SanityCheck() 360 if ((stored->key_len <= kMaxInternalKeyLength && key_addr.is_initialized()) || in SanityCheck() 361 (stored->key_len > kMaxInternalKeyLength && !key_addr.is_initialized())) in SanityCheck() 368 ((stored->key_len < kMaxBlockSize && key_addr.is_separate_file()) || in SanityCheck() [all …]
|
D | entry_impl.cc | 576 EntryStore* stored = entry_.Data(); in SanityCheck() local 577 if (!stored->rankings_node || stored->key_len <= 0) in SanityCheck() 580 if (stored->reuse_count < 0 || stored->refetch_count < 0) in SanityCheck() 583 Addr rankings_addr(stored->rankings_node); in SanityCheck() 587 Addr next_addr(stored->next); in SanityCheck() 594 if (stored->state > ENTRY_DOOMED || stored->state < ENTRY_NORMAL) in SanityCheck() 597 Addr key_addr(stored->long_key); in SanityCheck() 598 if ((stored->key_len <= kMaxInternalKeyLength && key_addr.is_initialized()) || in SanityCheck() 599 (stored->key_len > kMaxInternalKeyLength && !key_addr.is_initialized())) in SanityCheck() 606 ((stored->key_len < kMaxBlockSize && key_addr.is_separate_file()) || in SanityCheck() [all …]
|
/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/ |
D | pycapsule.pxd | 46 # If this capsule will be stored as an attribute of a module, the 53 # Retrieve the pointer stored in the capsule. On failure, set an 56 # The name parameter must compare exactly to the name stored in 57 # the capsule. If the name stored in the capsule is NULL, the name 63 # Return the current destructor stored in the capsule. On failure, 72 # Return the current name stored in the capsule. On failure, set 81 # Return the current context stored in the capsule. On failure, 92 # non-NULL pointer stored in it, and its internal name matches the 121 # outlive the capsule. If the previous name stored in the capsule 136 # attribute, as in module.attribute. The name stored in the
|
/external/chromium_org/ppapi/api/private/ |
D | ppp_flash_browser_operations.idl | 52 * stored. On UTF16 systems (Windows), this will be encoded as UTF-8. It will 79 * plugin settings are stored. 91 * plugin settings are stored. 109 * plugin settings are stored. 129 * plugin settings are stored. 146 * Returns a list of sites that have stored data, for use with the 150 * plugin data is stored. 151 * @param[out] sites A NULL-terminated array of sites that have stored data.
|
/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/e2fsprogs/tests/r_inline_xattr/ |
D | expect | 4 Extended attributes stored in inode body: 14 Extended attributes stored in inode body:
|
/external/llvm/test/CodeGen/R600/ |
D | vselect64.ll | 5 ; Make sure the vectors aren't being stored on the stack. We know they are 6 ; being stored on the stack if the shaders uses at leat 10 registers.
|
/external/skia/experimental/webtry/ |
D | DESIGN.md | 119 Code submitted is stored in an SQL database so that it can be referenced 125 All passwords for MySQL are stored in valentine. 207 Password for the database will be stored in the metadata instance, if the 209 database will be used. To see the current password stored in metadata and the 224 it both in MySQL and the value stored in the metadata server. 230 The id of the source image is just an integer and is stored in the database 233 The actual image itself is also stored in a separate table, 'sources', in the 238 When a user uploads an image it is decoded and converted to PNG and stored 245 The bitmap is read, decoded and stored in source before the seccomp jail is
|
/external/chromium_org/third_party/skia/experimental/webtry/ |
D | DESIGN.md | 119 Code submitted is stored in an SQL database so that it can be referenced 125 All passwords for MySQL are stored in valentine. 207 Password for the database will be stored in the metadata instance, if the 209 database will be used. To see the current password stored in metadata and the 224 it both in MySQL and the value stored in the metadata server. 230 The id of the source image is just an integer and is stored in the database 233 The actual image itself is also stored in a separate table, 'sources', in the 238 When a user uploads an image it is decoded and converted to PNG and stored 245 The bitmap is read, decoded and stored in source before the seccomp jail is
|
/external/llvm/lib/Target/XCore/ |
D | XCoreCallingConv.td | 19 // Integer values get stored in stack slots that are 4 bytes in 37 // Integer values get stored in stack slots that are 4 bytes in
|
/external/antlr/antlr-3.4/antlr3-maven-plugin/src/site/apt/examples/ |
D | simple.apt | 28 Your input files under <<<antlr3>>> should be stored in sub directories that 37 Then the .g file should be stored in: <<<src/main/antlr3/org/jimi/themuss/parser.g>>>. THis way
|
/external/chromium_org/third_party/leveldatabase/src/doc/ |
D | table_format.txt | 24 (1) The sequence of key/value pairs in the file are stored in sorted 56 filter block is stored in each table. The "metaindex" block contains 62 the output of FilterPolicy::CreateFilter() on all keys that are stored 70 resulting filter will be stored as the first filter in the filter
|
/external/chromium_org/sync/protocol/ |
D | favicon_image_specifics.proto | 28 // Favicons images should be stored into the field that best corresponds to 30 // that doesn't violate the maximum should be stored.
|
/external/clang/docs/ |
D | PCHInternals.rst | 49 headers stored within the PCH file. Thus, a precompiled header design 71 abstract syntax trees and supporting data structures, stored using the same 77 where certain important data structures are stored. The amount of data read in 171 Although not explicitly stored as part of the metadata, the predefines buffer 177 is stored within the :ref:`pchinternals-sourcemgr`, but its contents are 204 unique number (allocated starting at 1) stored in the source location. Clang 207 that file ID is stored. The data associated with a file ID is loaded only when 268 Declarations in Clang's abstract syntax trees are stored hierarchically. At 273 and so on. Within Clang, each declaration is stored within a :ref:`declaration 277 iterate over the declarations stored within a context (e.g., iterate over all [all …]
|
/external/skia/experimental/LightSymbolsUtil/Callstacker/Callstacker/ |
D | Callstacker.cpp | 46 string stored = GetStoredFilename(filename); in obtainFileId() local 47 if (stored.empty()) { in obtainFileId() 51 if (filenames.find(stored) == filenames.end()) { in obtainFileId() 54 filenames[stored] = id; in obtainFileId() 57 return filenames[stored]; in obtainFileId()
|