HomeSort by relevance Sort by last modified time
    Searched refs:bpos (Results 1 - 9 of 9) sorted by null

  /frameworks/base/core/java/android/util/
Base64OutputStream.java 32 private int bpos = 0; field in class:Base64OutputStream
79 if (bpos >= buffer.length) {
81 internalWrite(buffer, 0, bpos, false);
82 bpos = 0;
84 buffer[bpos++] = (byte) b;
92 if (bpos > 0) {
93 internalWrite(buffer, 0, bpos, false);
94 bpos = 0;
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/
Base64.java 74 int bpos = 0; local
86 buff[bpos++] = (byte) (c - 'A');
90 buff[bpos++] = (byte) ((c - 'a') + 26);
94 buff[bpos++] = (byte) ((c - '0') + 52);
98 buff[bpos++] = 62;
102 buff[bpos++] = 63;
106 buff[bpos++] = 64;
113 if (bpos == 4)
115 bpos = 0;
  /system/core/toolbox/
nandread.c 33 loff_t pos, opos, end, bpos; local
213 bpos = pos / mtdinfo.erasesize * mtdinfo.erasesize;
214 ret = ioctl(fd, MEMGETBADBLOCK, &bpos);
  /bootable/recovery/mtdutils/
mtdutils.c 417 loff_t bpos = pos; local
418 int ret = ioctl(fd, MEMGETBADBLOCK, &bpos);
527 loff_t bpos = pos; local
528 if (ioctl(ctx->fd, MEMGETBADBLOCK, &bpos) > 0) {
  /external/smack/src/org/xbill/DNS/
Name.java 733 equals(byte [] b, int bpos) {
736 if (name[pos] != b[bpos])
739 bpos++;
744 lowercase[(b[bpos++] & 0xFF)])
  /external/javassist/src/main/javassist/bytecode/
CodeIterator.java 1230 int bpos; local
    [all...]
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndldic.c 64 #define SET_BPOS_AND_YSIZE(x,bpos,ysize) \
65 NJ_INT16_WRITE((x), ((NJ_UINT16)((bpos) << 7) | ((ysize) & 0x7F)))
68 #define SET_BPOS_AND_KSIZE(x,bpos,ksize) \
69 NJ_INT16_WRITE(((x)+3), ((NJ_UINT16)((bpos) << 7) | ((ksize) & 0x7F)))
    [all...]
  /external/libvpx/libwebm/
mkvparser.cpp     [all...]
  /external/robolectric/lib/main/
javassist-3.14.0-GA.jar 

Completed in 1621 milliseconds