HomeSort by relevance Sort by last modified time
    Searched full:input_offset (Results 1 - 25 of 58) sorted by null

1 2 3

  /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]);
  /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);
  /external/v8/src/arm/
deoptimizer-arm.cc 287 int input_offset = input_frame_size - kPointerSize; local
289 int limit = input_offset - (parameter_count * kPointerSize);
290 while (ok && input_offset > limit) {
291 ok = DoOsrTranslateCommand(&iterator, &input_offset);
299 uint32_t input_value = input_->GetFrameSlot(input_offset);
319 input_offset,
323 output_[0]->SetFrameSlot(output_offset, input_->GetFrameSlot(input_offset));
324 input_offset -= kPointerSize;
329 while (ok && input_offset >= 0) {
330 ok = DoOsrTranslateCommand(&iterator, &input_offset);
629 unsigned input_offset = input_frame_size; local
    [all...]
  /external/v8/src/x64/
deoptimizer-x64.cc 264 int input_offset = input_frame_size - kPointerSize; local
266 int limit = input_offset - (parameter_count * kPointerSize);
267 while (ok && input_offset > limit) {
268 ok = DoOsrTranslateCommand(&iterator, &input_offset);
276 intptr_t input_value = input_->GetFrameSlot(input_offset);
297 input_offset,
300 output_[0]->SetFrameSlot(output_offset, input_->GetFrameSlot(input_offset));
301 input_offset -= kPointerSize;
306 while (ok && input_offset >= 0) {
307 ok = DoOsrTranslateCommand(&iterator, &input_offset);
607 unsigned input_offset = input_frame_size; local
    [all...]
  /external/chromium/base/
utf_offset_string_conversions_unittest.cc 44 size_t input_offset; member in struct:base::UTF8ToWideCase
60 size_t offset = utf8_to_wide_cases[i].input_offset;
68 size_t input_offset; member in struct:base::UTF16ToWideCase
76 size_t offset = utf16_to_wide_cases[i].input_offset;
  /external/chromium_org/base/strings/
utf_offset_string_conversions_unittest.cc 23 size_t input_offset; member in struct:base::UTF8ToUTF16Case
38 size_t offset = utf8_to_utf16_cases[i].input_offset;
45 size_t input_offset; member in struct:base::UTF16ToUTF8Case
66 size_t offset = utf16_to_utf8_cases[i].input_offset;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_pt_fetch.c 101 key.element[nr].input_offset = draw->pt.vertex_element[ei].src_offset;
112 key.element[nr].input_offset = draw->pt.vertex_element[ei].src_offset;
123 key.element[nr].input_offset = draw->pt.vertex_element[ei].src_offset;
draw_pt_fetch_emit.c 122 unsigned input_offset = src->src_offset; local
134 input_offset = 0;
140 key.element[i].input_offset = input_offset;
draw_vs_variant.c 299 fetch.element[i].input_offset = key->element[i].in.offset;
315 emit.element[i].input_offset = key->element[i].out.vs_output * 4 * sizeof(float);
319 assert(emit.element[i].input_offset <= fetch.output_stride);
325 emit.element[i].input_offset = 0;
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pt_fetch.c 101 key.element[nr].input_offset = draw->pt.vertex_element[ei].src_offset;
112 key.element[nr].input_offset = draw->pt.vertex_element[ei].src_offset;
123 key.element[nr].input_offset = draw->pt.vertex_element[ei].src_offset;
draw_pt_fetch_emit.c 122 unsigned input_offset = src->src_offset; local
134 input_offset = 0;
140 key.element[i].input_offset = input_offset;
draw_vs_variant.c 299 fetch.element[i].input_offset = key->element[i].in.offset;
315 emit.element[i].input_offset = key->element[i].out.vs_output * 4 * sizeof(float);
319 assert(emit.element[i].input_offset <= fetch.output_stride);
325 emit.element[i].input_offset = 0;
  /external/v8/src/ia32/
deoptimizer-ia32.cc 378 int input_offset = input_frame_size - kPointerSize; local
380 int limit = input_offset - (parameter_count * kPointerSize);
381 while (ok && input_offset > limit) {
382 ok = DoOsrTranslateCommand(&iterator, &input_offset);
390 uint32_t input_value = input_->GetFrameSlot(input_offset);
410 input_offset,
413 output_[0]->SetFrameSlot(output_offset, input_->GetFrameSlot(input_offset));
414 input_offset -= kPointerSize;
419 while (ok && input_offset >= 0) {
420 ok = DoOsrTranslateCommand(&iterator, &input_offset);
708 unsigned input_offset = input_frame_size; local
    [all...]
  /external/v8/src/mips/
deoptimizer-mips.cc 277 int input_offset = input_frame_size - kPointerSize; local
279 int limit = input_offset - (parameter_count * kPointerSize);
280 while (ok && input_offset > limit) {
281 ok = DoOsrTranslateCommand(&iterator, &input_offset);
289 uint32_t input_value = input_->GetFrameSlot(input_offset);
309 input_offset,
313 output_[0]->SetFrameSlot(output_offset, input_->GetFrameSlot(input_offset));
314 input_offset -= kPointerSize;
319 while (ok && input_offset >= 0) {
320 ok = DoOsrTranslateCommand(&iterator, &input_offset);
619 unsigned input_offset = input_frame_size; local
    [all...]
  /external/v8/src/
deoptimizer.cc 766 unsigned input_offset = local
768 intptr_t input_value = input_->GetFrameSlot(input_offset);
775 input_offset);
785 unsigned input_offset = local
787 intptr_t value = input_->GetFrameSlot(input_offset);
795 input_offset,
814 unsigned input_offset = local
816 double value = input_->GetDoubleFrameSlot(input_offset);
822 input_offset);
865 int* input_offset) {
    [all...]
  /external/chromium_org/v8/src/
deoptimizer.cc     [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/translate/
translate.h 58 unsigned input_offset:24; member in struct:translate_element
translate_generic.c 58 unsigned input_offset; member in struct:translate_generic::__anon15304
752 tg->attrib[i].input_offset);
832 tg->attrib[i].input_offset = key->element[i].input_offset;
    [all...]
  /external/mesa3d/src/gallium/auxiliary/translate/
translate.h 58 unsigned input_offset:24; member in struct:translate_element
translate_generic.c 58 unsigned input_offset; member in struct:translate_generic::__anon25771
752 tg->attrib[i].input_offset);
832 tg->attrib[i].input_offset = key->element[i].input_offset;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
subprocess.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
subprocess.py     [all...]
  /external/chromium_org/v8/test/cctest/
test-parsing.cc 762 int input_offset = 0; local
777 input_offset = 3;
786 input_offset = 2;
795 input_offset = 1;
800 for (int j = 1; j <= input_offset; j++) {
809 i += input_offset;
    [all...]
  /external/v8/test/cctest/
test-parsing.cc 759 int input_offset = 0; local
774 input_offset = 3;
783 input_offset = 2;
792 input_offset = 1;
797 for (int j = 1; j <= input_offset; j++) {
806 i += input_offset;
    [all...]

Completed in 1439 milliseconds

1 2 3