HomeSort by relevance Sort by last modified time
    Searched refs:bpos (Results 1 - 5 of 5) 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;
  /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/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...]

Completed in 137 milliseconds