HomeSort by relevance Sort by last modified time
    Searched defs:stored (Results 1 - 10 of 10) sorted by null

  /external/dropbear/libtomcrypt/src/misc/pkcs5/
pkcs_5_2.c 38 unsigned long stored, left, x, y; local
68 stored = 0;
105 out[stored++] = buf[1][y];
109 *outlen = stored;
  /frameworks/base/core/tests/coretests/src/android/view/
SetTagsTest.java 57 final Object stored = mView.getTag(); local
58 assertNotNull(stored);
59 assertSame("The stored tag is inccorect", o, stored);
72 final Object stored = mView.getTag(R.id.a); local
73 assertNotNull(stored);
74 assertSame("The stored tag is inccorect", o, stored);
  /bootable/recovery/mtdutils/
mtdutils.c 48 size_t stored; member in struct:MtdWriteContext
394 ctx->stored = 0;
481 if (ctx->stored > 0 || len - wrote < ctx->partition->erase_size) {
482 size_t avail = ctx->partition->erase_size - ctx->stored;
484 memcpy(ctx->buffer + ctx->stored, data + wrote, copy);
485 ctx->stored += copy;
490 if (ctx->stored == ctx->partition->erase_size) {
492 ctx->stored = 0;
496 while (ctx->stored == 0 && len - wrote >= ctx->partition->erase_size) {
508 if (ctx->stored > 0)
    [all...]
  /external/zlib/contrib/puff/
puff.c 21 * works whether integers are stored big endian or little endian.
114 * - Bits are stored in bytes from the least significant bit to the most
140 * Process a stored block.
144 * - After the two-bit stored block type (00), the stored block length and
145 * stored bytes are byte-aligned for fast copying. Therefore any leftover
150 * - The second inverted copy of the stored block length does not have to be
153 * - A stored block can have zero length. This is sometimes used to byte-align
156 local int stored(struct state *s) function
158 unsigned len; /* length of stored block *
    [all...]
  /external/zlib/examples/
gzlog.c 40 - 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 block, which is the actual start of th
296 uint stored; \/* bytes currently in last stored block *\/ member in struct:log
    [all...]
  /bionic/libc/tzcode/
localtime.c 412 register int stored; local
512 for (stored = 4; stored <= 8; stored *= 2) {
531 sp->timecnt * stored + /* ats */
535 sp->leapcnt * (stored + 4) + /* lsinfos */
540 sp->ats[i] = (stored == 4) ?
542 p += stored;
570 lsisp->ls_trans = (stored == 4) ?
572 p += stored;
    [all...]
  /external/chromium/third_party/icu/source/tools/tzcode/
localtime.c 344 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/
localtime.c 344 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...]
  /system/core/libcutils/
tztime.c 362 register int stored; local
446 for (stored = 4; stored <= 8; stored *= 2) {
465 sp->timecnt * stored + /* ats */
469 sp->leapcnt * (stored + 4) + /* lsinfos */
474 sp->ats[i] = (stored == 4) ?
476 p += stored;
504 lsisp->ls_trans = (stored == 4) ?
506 p += stored;
    [all...]
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 

Completed in 434 milliseconds