HomeSort by relevance Sort by last modified time
    Searched refs:stored (Results 1 - 25 of 55) sorted by null

1 2 3

  /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);
  /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;
  /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...]
  /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...]
  /device/htc/common/updater/
Android.mk 9 # knows how to recover the log stored in the cache partition when a
  /dalvik/vm/mterp/armv5te/
OP_SPUT_OBJECT.S 36 cmp r1, #0 @ stored a null object?
OP_IPUT_OBJECT.S 48 cmp r0, #0 @ stored a null reference?
  /device/htc/passion-common/libsensors/
Android.mk 20 # HAL module implemenation, not prelinked, and stored in
  /device/samsung/crespo/liblight/
Android.mk 18 # HAL module implemenation, not prelinked and stored in
  /device/samsung/crespo/liboverlay/
Android.mk 18 # HAL module implemenation, not prelinked and stored in
  /device/samsung/crespo/libsensors/
Android.mk 20 # HAL module implemenation, not prelinked, and stored in
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternUtils.java 183 * @return Whether the pattern matches the stored one.
189 final byte[] stored = new byte[(int) raf.length()];
190 int got = raf.read(stored, 0, stored.length);
196 return Arrays.equals(stored, LockPatternUtils.patternToHash(pattern));
208 * @return Whether the password matches the stored one.
214 final byte[] stored = new byte[(int) raf.length()];
215 int got = raf.read(stored, 0, stored.length);
221 return Arrays.equals(stored, passwordToHash(password))
    [all...]
  /hardware/libhardware/modules/gralloc/
Android.mk 18 # HAL module implemenation, not prelinked and stored in
  /hardware/libhardware/modules/overlay/
Android.mk 18 # HAL module implemenation, not prelinked and stored in
  /hardware/msm7k/libcopybit/
Android.mk 17 # HAL module implemenation, not prelinked and stored in
  /hardware/msm7k/libgralloc/
Android.mk 18 # HAL module implemenation, not prelinked and stored in
  /hardware/msm7k/liblights/
Android.mk 17 # HAL module implemenation, not prelinked and stored in
  /hardware/ti/omap3/liboverlay/
Android.mk 16 # HAL module implemenation, not prelinked and stored in
  /sdk/emulator/gps/
Android.mk 19 # HAL module implemenation, not prelinked and stored in
  /sdk/emulator/sensors/
Android.mk 19 # HAL module implemenation, not prelinked and stored in
  /dalvik/vm/mterp/x86/
OP_IPUT_OBJECT.S 62 testl rINST_FULL,rINST_FULL # stored a NULL?
OP_SPUT_OBJECT.S 25 testl %ecx,%ecx # stored null object ptr?
  /hardware/msm7k/libgralloc-qsd8k/
Android.mk 17 # HAL module implemenation, not prelinked and stored in
  /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...]

Completed in 370 milliseconds

1 2 3