Searched refs:input_offset (Results 1 - 25 of 51) sorted by relevance

123

/external/v8/src/arm/
H A Ddeoptimizer-arm.cc287 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/ia32/
H A Ddeoptimizer-ia32.cc378 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/
H A Ddeoptimizer-mips.cc277 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/x64/
H A Ddeoptimizer-x64.cc264 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_org/v8/src/arm/
H A Ddeoptimizer-arm.cc271 int input_offset = input_frame_size - kPointerSize; local
273 int limit = input_offset - (parameter_count * kPointerSize);
274 while (ok && input_offset > limit) {
275 ok = DoOsrTranslateCommand(&iterator, &input_offset);
283 uint32_t input_value = input_->GetFrameSlot(input_offset);
303 input_offset,
307 output_[0]->SetFrameSlot(output_offset, input_->GetFrameSlot(input_offset));
308 input_offset -= kPointerSize;
313 while (ok && input_offset >= 0) {
314 ok = DoOsrTranslateCommand(&iterator, &input_offset);
[all...]
/external/chromium_org/v8/src/mips/
H A Ddeoptimizer-mips.cc256 int input_offset = input_frame_size - kPointerSize; local
258 int limit = input_offset - (parameter_count * kPointerSize);
259 while (ok && input_offset > limit) {
260 ok = DoOsrTranslateCommand(&iterator, &input_offset);
268 uint32_t input_value = input_->GetFrameSlot(input_offset);
288 input_offset,
292 output_[0]->SetFrameSlot(output_offset, input_->GetFrameSlot(input_offset));
293 input_offset -= kPointerSize;
298 while (ok && input_offset >= 0) {
299 ok = DoOsrTranslateCommand(&iterator, &input_offset);
[all...]
/external/chromium_org/v8/src/x64/
H A Ddeoptimizer-x64.cc262 int input_offset = input_frame_size - kPointerSize; local
264 int limit = input_offset - (parameter_count * kPointerSize);
265 while (ok && input_offset > limit) {
266 ok = DoOsrTranslateCommand(&iterator, &input_offset);
274 intptr_t input_value = input_->GetFrameSlot(input_offset);
295 input_offset,
298 output_[0]->SetFrameSlot(output_offset, input_->GetFrameSlot(input_offset));
299 input_offset -= kPointerSize;
304 while (ok && input_offset >= 0) {
305 ok = DoOsrTranslateCommand(&iterator, &input_offset);
[all...]
/external/chromium/base/
H A Dutf_offset_string_conversions_unittest.cc44 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/
H A Dutf_offset_string_conversions_unittest.cc23 size_t input_offset; member in struct:base::UTF8ToUTF16Case
35 size_t offset = utf8_to_utf16_cases[i].input_offset;
42 size_t input_offset; member in struct:base::UTF16ToUTF8Case
59 size_t offset = utf16_to_utf8_cases[i].input_offset;
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_pt_fetch_emit.c122 unsigned input_offset = src->src_offset; local
134 input_offset = 0;
140 key.element[i].input_offset = input_offset;
H A Ddraw_vs_variant.c299 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;
H A Ddraw_pt_fetch.c101 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;
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/translate/
H A Dtranslate.h58 unsigned input_offset:24; member in struct:translate_element
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pt_fetch_emit.c122 unsigned input_offset = src->src_offset; local
134 input_offset = 0;
140 key.element[i].input_offset = input_offset;
H A Ddraw_vs_variant.c299 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;
H A Ddraw_pt_fetch.c101 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;
/external/mesa3d/src/gallium/auxiliary/translate/
H A Dtranslate.h58 unsigned input_offset:24; member in struct:translate_element
/external/chromium_org/v8/src/
H A Ddeoptimizer.cc954 unsigned input_offset = input_frame_size;
959 input_offset -= (parameter_count * kPointerSize);
970 input_offset -= kPCOnStackSize;
973 value = input_->GetFrameSlot(input_offset);
989 input_offset -= kFPOnStackSize;
991 value = input_->GetFrameSlot(input_offset);
1014 input_offset -= kPointerSize;
1016 value = input_->GetFrameSlot(input_offset);
1031 input_offset -= kPointerSize;
1035 ASSERT(!is_bottommost || input_->GetFrameSlot(input_offset)
[all...]
/external/chromium_org/v8/src/ia32/
H A Ddeoptimizer-ia32.cc359 int input_offset = input_frame_size - kPointerSize; local
361 int limit = input_offset - (parameter_count * kPointerSize);
362 while (ok && input_offset > limit) {
363 ok = DoOsrTranslateCommand(&iterator, &input_offset);
371 uint32_t input_value = input_->GetFrameSlot(input_offset);
391 input_offset,
394 output_[0]->SetFrameSlot(output_offset, input_->GetFrameSlot(input_offset));
395 input_offset -= kPointerSize;
418 while (ok && input_offset >= 0) {
419 ok = DoOsrTranslateCommand(&iterator, &input_offset);
[all...]
/external/v8/src/
H A Ddeoptimizer.cc766 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) {
864 DoOsrTranslateCommand(TranslationIterator* iterator, int* input_offset) argument
[all...]
/external/chromium/net/base/
H A Dnet_util_unittest.cc375 size_t input_offset; member in struct:net::__anon2979::AdjustOffsetCase
989 size_t offset = adjust_cases[i].input_offset;
1813 size_t offset = basic_cases[i].input_offset;
1833 size_t input_offset; member in struct:net::__anon2988
1848 size_t offset = omit_auth_cases[i].input_offset;
1883 size_t offset = view_source_cases[i].input_offset;
1912 size_t offset = idn_hostname_cases[i].input_offset;
1948 size_t offset = unescape_cases[i].input_offset;
1986 size_t offset = ref_cases[i].input_offset;
2018 size_t offset = omit_http_cases[i].input_offset;
[all...]
H A Descape_unittest.cc53 size_t input_offset; member in struct:__anon2955::AdjustOffsetCase
364 size_t offset = adjust_cases[i].input_offset;
/external/chromium_org/net/base/
H A Descape_unittest.cc54 size_t input_offset; member in struct:net::__anon8514::AdjustOffsetCase
354 size_t offset = adjust_cases[i].input_offset;
/external/chromium_org/v8/test/cctest/
H A Dtest-parsing.cc761 int input_offset = 0; local
776 input_offset = 3;
785 input_offset = 2;
794 input_offset = 1;
799 for (int j = 1; j <= input_offset; j++) {
808 i += input_offset;
/external/v8/test/cctest/
H A Dtest-parsing.cc759 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;

Completed in 358 milliseconds

123