Searched defs:stored (Results 1 - 15 of 15) sorted by relevance

/external/clang/test/CodeGenCXX/
H A Dmangle-subst-std.cpp53 basic_istream(int x) : basic_ios<charT, traits>(x), stored(x) { }
55 int stored; member in struct:std::basic_istream
59 basic_ostream(int x) : basic_ios<charT, traits>(x), stored(x) { }
61 float stored; member in struct:std::basic_ostream
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_setup_context.h63 * Note: "stored" below indicates data which is stored in the bins,
124 const struct lp_rast_state *stored; /**< what's in the scene */ member in struct:lp_setup_context::__anon13812
138 uint8_t *stored; member in struct:lp_setup_context::__anon13814
H A Dlp_setup.c125 setup->fs.stored = NULL;
778 boolean new_scene = (setup->fs.stored == NULL);
784 uint8_t *stored; local
787 stored = lp_scene_alloc_aligned(scene, 4 * 16, 16);
788 if (!stored) {
797 stored[i*16 + j] = c;
800 setup->blend_color.stored = stored;
801 setup->fs.current.jit_context.blend_color = setup->blend_color.stored;
819 void *stored; local
850 struct lp_rast_state *stored; local
[all...]
/external/eigen/unsupported/Eigen/src/BVH/
H A DBVAlgorithms.h49 intersector_helper1(const Object2 &inStored, Intersector &in) : stored(inStored), intersector(in) {}
50 bool intersectVolume(const Volume1 &vol) { return intersector.intersectVolumeObject(vol, stored); }
51 bool intersectObject(const Object1 &obj) { return intersector.intersectObjectObject(obj, stored); }
52 Object2 stored; member in struct:Eigen::internal::intersector_helper1
61 intersector_helper2(const Object1 &inStored, Intersector &in) : stored(inStored), intersector(in) {}
62 bool intersectVolume(const Volume2 &vol) { return intersector.intersectObjectVolume(stored, vol); }
63 bool intersectObject(const Object2 &obj) { return intersector.intersectObjectObject(stored, obj); }
64 Object1 stored; member in struct:Eigen::internal::intersector_helper2
186 minimizer_helper1(const Object2 &inStored, Minimizer &m) : stored(inStored), minimizer(m) {}
187 Scalar minimumOnVolume(const Volume1 &vol) { return minimizer.minimumOnVolumeObject(vol, stored); }
189 Object2 stored; member in struct:Eigen::internal::minimizer_helper1
202 Object1 stored; member in struct:Eigen::internal::minimizer_helper2
[all...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_setup_context.h63 * Note: "stored" below indicates data which is stored in the bins,
124 const struct lp_rast_state *stored; /**< what's in the scene */ member in struct:lp_setup_context::__anon27223
138 uint8_t *stored; member in struct:lp_setup_context::__anon27225
H A Dlp_setup.c125 setup->fs.stored = NULL;
778 boolean new_scene = (setup->fs.stored == NULL);
784 uint8_t *stored; local
787 stored = lp_scene_alloc_aligned(scene, 4 * 16, 16);
788 if (!stored) {
797 stored[i*16 + j] = c;
800 setup->blend_color.stored = stored;
801 setup->fs.current.jit_context.blend_color = setup->blend_color.stored;
819 void *stored; local
850 struct lp_rast_state *stored; local
[all...]
/external/zlib/src/contrib/puff/
H A Dpuff.c21 * works whether integers are stored big endian or little endian.
121 * - Bits are stored in bytes from the least significant bit to the most
148 * Process a stored block.
152 * - After the two-bit stored block type (00), the stored block length and
153 * stored bytes are byte-aligned for fast copying. Therefore any leftover
158 * - The second inverted copy of the stored block length does not have to be
161 * - A stored block can have zero length. This is sometimes used to byte-align
164 local int stored(struct state *s) function
166 unsigned len; /* length of stored bloc
[all...]
/external/zlib/src/examples/
H A Dgzlog.c40 - compressed data ending initially with empty stored block
41 - uncompressed data filling out originally empty stored block and
42 subsequent stored blocks as needed (16K max each)
49 stored block and determine where to append the data in the foo.add file, as
95 recovery if interrupted. Multi-byte values are stored little endian
99 for large files is actually the length modulo 2^32.) The stored block
110 - Pointer to first stored block length -- this points to the two-byte length
111 of the first stored block, which is followed by the two-byte, one's
112 complement of that length. The stored block length is preceded by the
113 three-bit header of the stored bloc
296 uint stored; /* bytes currently in last stored block */ member in struct:log
[all...]
/external/chromium_org/third_party/skia/experimental/LightSymbolsUtil/Callstacker/Callstacker/
H A DCallstacker.cpp46 string stored = GetStoredFilename(filename); local
47 if (stored.empty()) {
51 if (filenames.find(stored) == filenames.end()) {
54 filenames[stored] = id;
57 return filenames[stored];
/external/skia/experimental/LightSymbolsUtil/Callstacker/Callstacker/
H A DCallstacker.cpp46 string stored = GetStoredFilename(filename); local
47 if (stored.empty()) {
51 if (filenames.find(stored) == filenames.end()) {
54 filenames[stored] = id;
57 return filenames[stored];
/external/chromium_org/net/disk_cache/blockfile/
H A Dentry_impl_v3.cc65 // actual file has |eof| bytes stored. Note that the number of bytes to read
338 EntryStore* stored = entry_.Data();
339 if (!stored->rankings_node || stored->key_len <= 0)
342 if (stored->reuse_count < 0 || stored->refetch_count < 0)
345 Addr rankings_addr(stored->rankings_node);
349 Addr next_addr(stored->next);
356 if (stored->state > ENTRY_DOOMED || stored
380 EntryStore* stored = entry_.Data(); local
410 EntryStore* stored = entry_.Data(); local
[all...]
H A Dentry_impl.cc116 // actual file has |eof| bytes stored. Note that the number of bytes to read
576 EntryStore* stored = entry_.Data();
577 if (!stored->rankings_node || stored->key_len <= 0)
580 if (stored->reuse_count < 0 || stored->refetch_count < 0)
583 Addr rankings_addr(stored->rankings_node);
587 Addr next_addr(stored->next);
594 if (stored->state > ENTRY_DOOMED || stored
618 EntryStore* stored = entry_.Data(); local
648 EntryStore* stored = entry_.Data(); local
[all...]
/external/chromium_org/third_party/icu/source/tools/tzcode/
H A Dlocaltime.c344 register int stored; local
392 for (stored = 4; stored <= 8; stored *= 2) {
411 sp->timecnt * stored + /* ats */
415 sp->leapcnt * (stored + 4) + /* lsinfos */
420 sp->ats[i] = (stored == 4) ?
422 p += stored;
450 lsisp->ls_trans = (stored == 4) ?
452 p += stored;
[all...]
/external/icu/icu4c/source/tools/tzcode/
H A Dlocaltime.c344 register int stored; local
392 for (stored = 4; stored <= 8; stored *= 2) {
411 sp->timecnt * stored + /* ats */
415 sp->leapcnt * (stored + 4) + /* lsinfos */
420 sp->ats[i] = (stored == 4) ?
422 p += stored;
450 lsisp->ls_trans = (stored == 4) ?
452 p += stored;
[all...]
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 573 milliseconds