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

  /device/samsung/manta/recovery/
recovery_updater.c 48 #define INPUT_OFFSET (35*1024)
96 if (img_size != INPUT_OFFSET + BIG_LENGTH) {
98 INPUT_OFFSET + BIG_LENGTH, img_size);
133 copy_block(f, img_data, INPUT_OFFSET, BIG_LENGTH, SECONDARY_OUTPUT_OFFSET);
138 copy_block(f, img_data, INPUT_OFFSET, BIG_LENGTH, PRIMARY_OUTPUT_OFFSET);
  /libcore/luni/src/main/java/java/nio/charset/
CharsetDecoderICU.java 26 private static final int INPUT_OFFSET = 0;
30 * data[INPUT_OFFSET] = on input contains the start of input and on output the number of input bytes consumed
91 data[INPUT_OFFSET] = 0;
107 data[INPUT_OFFSET] = 0;
117 if (data[INPUT_OFFSET] > 0) {
118 return CoderResult.malformedForLength(data[INPUT_OFFSET]);
134 data[INPUT_OFFSET] = getArray(in);
214 in.position(in.position() + data[INPUT_OFFSET]);
CharsetEncoderICU.java 41 private static final int INPUT_OFFSET = 0;
45 * data[INPUT_OFFSET] = on input contains the start of input and on output the number of input chars consumed
119 data[INPUT_OFFSET] = 0;
135 data[INPUT_OFFSET] = 0;
145 if (data[INPUT_OFFSET] > 0) {
146 return CoderResult.malformedForLength(data[INPUT_OFFSET]);
162 data[INPUT_OFFSET] = getArray(in);
243 in.position(in.position() + data[INPUT_OFFSET] - data[INVALID_CHARS]);

Completed in 57 milliseconds