Searched refs:stored (Results 1 - 25 of 75) sorted by relevance

123

/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dapp_yaml_helper.py95 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/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/dropbear/libtomcrypt/src/misc/pkcs5/
H A Dpkcs_5_2.c38 unsigned long stored, left, x, y; local
68 stored = 0;
105 out[stored++] = buf[1][y];
109 *outlen = stored;
/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/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::__anon12133
138 uint8_t *stored; member in struct:lp_setup_context::__anon12135
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...]
H A Dlp_setup_tri.c216 setup->fs.stored,
222 setup->fs.stored,
606 setup->fs.stored,
628 setup->fs.stored,
642 setup->fs.stored,
650 return lp_scene_bin_cmd_with_state( scene, ix0, iy0, setup->fs.stored,
725 setup->fs.stored,
/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::__anon22495
138 uint8_t *stored; member in struct:lp_setup_context::__anon22497
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...]
H A Dlp_setup_tri.c216 setup->fs.stored,
222 setup->fs.stored,
606 setup->fs.stored,
628 setup->fs.stored,
642 setup->fs.stored,
650 return lp_scene_bin_cmd_with_state( scene, ix0, iy0, setup->fs.stored,
725 setup->fs.stored,
/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/net/disk_cache/v3/
H A Dentry_impl_v3.cc58 // actual file has |eof| bytes stored. Note that the number of bytes to read
327 EntryStore* stored = entry_.Data();
328 if (!stored->rankings_node || stored->key_len <= 0)
331 if (stored->reuse_count < 0 || stored->refetch_count < 0)
334 Addr rankings_addr(stored->rankings_node);
338 Addr next_addr(stored->next);
345 if (stored->state > ENTRY_DOOMED || stored
369 EntryStore* stored = entry_.Data(); local
399 EntryStore* stored = entry_.Data(); local
[all...]
/external/chromium/net/disk_cache/
H A Dentry_impl.cc112 // actual file has |eof| bytes stored. Note that the number of bytes to read
574 EntryStore* stored = entry_.Data(); local
575 if (!stored->rankings_node || stored->key_len <= 0)
578 if (stored->reuse_count < 0 || stored->refetch_count < 0)
581 Addr rankings_addr(stored->rankings_node);
586 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/net/disk_cache/
H A Dentry_impl.cc113 // actual file has |eof| bytes stored. Note that the number of bytes to read
573 EntryStore* stored = entry_.Data();
574 if (!stored->rankings_node || stored->key_len <= 0)
577 if (stored->reuse_count < 0 || stored->refetch_count < 0)
580 Addr rankings_addr(stored->rankings_node);
584 Addr next_addr(stored->next);
591 if (stored->state > ENTRY_DOOMED || stored
615 EntryStore* stored = entry_.Data(); local
645 EntryStore* stored = entry_.Data(); local
[all...]
/external/chromium_org/third_party/sqlite/src/tool/
H A Dspace_used.tcl26 payload int, -- Total amount of data stored in this table or index
H A Dspaceanal.tcl51 payload int, -- Total amount of data stored in this table or index
52 ovfl_payload int, -- Total amount of data stored on overflow pages
210 # The results of the query are stored directly by SQLite into local
407 statline {Bytes of user payload stored} $user_payload $user_percent
499 Bytes of user payload stored
501 The total number of bytes of user payload stored in the database. The
513 The total number of B-Tree key/value pairs stored under this category.
523 The amount of payload stored under this category. Payload is the data
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/tests/
H A Drdtmain.asm3 ;; "hello" is stored in the library part, to complicate the
/external/chromium-trace/trace-viewer/src/
H A Dbase.js207 ' didn\'t get stored in the flattened js file! ' +
270 ' didn\'t get stored in the flattened js file! ' +
/external/libvpx/libvpx/examples/includes/geshi/geshi/
H A Dtsql.php150 System stored procedures
/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/icu4c/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/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/libvpx/libvpx/vp8/common/arm/armv6/
H A Dsixtappredict8x4_v6.asm25 ;and the result is stored in transpose.
88 strh r11, [lr], #20 ; result is transposed and stored, which
171 strb lr, [r0], r1 ; the result is transposed back and stored
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DGrammarAST.java251 String stored= setBlockOption(grammar, optionName, options.get(optionName));
252 if ( stored==null ) {
H A DRule.java559 String stored=setOption(optionName, optionValue, optionsStartToken);
560 if ( stored==null ) {

Completed in 890 milliseconds

123