/third_party/node/deps/v8/src/regexp/ |
H A D | regexp-utils.cc | 65 return handle(JSRegExp::cast(*recv).last_index(), isolate); in GetLastIndex() 167 Object last_index = JSRegExp::cast(recv).last_index(); in IsUnmodifiedRegExp() 168 return last_index.IsSmi() && Smi::ToInt(last_index) >= 0; in IsUnmodifiedRegExp() 201 const uint64_t last_index = PositiveNumberToUint64(*last_index_obj); in SetAdvancedStringIndex() local 203 AdvanceStringIndex(string, last_index, unicode); in SetAdvancedStringIndex()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-ms-feature-ranges.cc | 76 unsigned int last_index = 0; in hb_ms_setup_features() local 81 if (event->index != last_index) in hb_ms_setup_features() 105 range->index_first = last_index; in hb_ms_setup_features() 108 last_index = event->index; in hb_ms_setup_features()
|
/third_party/mesa3d/src/util/ |
H A D | softfloat.c | 243 unsigned index, last_index; in _mesa_short_shift_left_m() local 248 last_index = index_word_lo(size_words); in _mesa_short_shift_left_m() 250 while (index != last_index) { in _mesa_short_shift_left_m() 321 unsigned index, last_index; in _mesa_short_shift_right_m() local 326 last_index = index_word_hi(size_words); in _mesa_short_shift_right_m() 328 while (index != last_index) { in _mesa_short_shift_right_m() 354 unsigned index, last_index; in _mesa_short_shift_right_jam_m() local 359 last_index = index_word_hi(size_words); in _mesa_short_shift_right_jam_m() 364 while (index != last_index) { in _mesa_short_shift_right_jam_m() 583 unsigned index, last_index; in _mesa_neg_x_m() local 614 unsigned index, last_index; _mesa_add_m() local 646 unsigned index, last_index; _mesa_sub_m() local [all...] |
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-regexp-gen.cc | 96 TNode<String> input, TNode<JSRegExp> regexp, TNode<Number> last_index, in AllocateRegExpResult() 160 // If non-smi last_index then store an SmiZero instead. in AllocateRegExpResult() 163 TaggedIsSmi(last_index), [=] { return CAST(last_index); }, in AllocateRegExpResult() 224 TNode<Number> last_index) { in ConstructNewResultFromMatchInfo() 248 last_index, has_indices, &result_elements); in ConstructNewResultFromMatchInfo() 413 TNode<IntPtrT> last_index, TNode<IntPtrT> string_length, in GetStringPointers() 424 ElementOffsetFromIndex(IntPtrAdd(offset, last_index), kind); in GetStringPointers() 435 TNode<Number> last_index, TNode<RegExpMatchInfo> match_info, in RegExpExecInternal() 449 // At this point, last_index i in RegExpExecInternal() 94 AllocateRegExpResult( TNode<Context> context, TNode<Smi> length, TNode<Smi> index, TNode<String> input, TNode<JSRegExp> regexp, TNode<Number> last_index, TNode<BoolT> has_indices, TNode<FixedArray>* elements_out) AllocateRegExpResult() argument 221 ConstructNewResultFromMatchInfo( TNode<Context> context, TNode<JSRegExp> regexp, TNode<RegExpMatchInfo> match_info, TNode<String> string, TNode<Number> last_index) ConstructNewResultFromMatchInfo() argument 411 GetStringPointers( TNode<RawPtrT> string_data, TNode<IntPtrT> offset, TNode<IntPtrT> last_index, TNode<IntPtrT> string_length, String::Encoding encoding, TVariable<RawPtrT>* var_string_start, TVariable<RawPtrT>* var_string_end) GetStringPointers() argument 433 RegExpExecInternal( TNode<Context> context, TNode<JSRegExp> regexp, TNode<String> string, TNode<Number> last_index, TNode<RegExpMatchInfo> match_info, RegExp::ExecQuirks exec_quirks) RegExpExecInternal() argument 1004 auto last_index = Parameter<Number>(Descriptor::kLastIndex); TF_BUILTIN() local [all...] |
H A D | builtins-regexp-gen.h | 32 TNode<String> input, TNode<JSRegExp> regexp, TNode<Number> last_index, 48 TNode<IntPtrT> last_index, 57 TNode<Number> last_index, TNode<RegExpMatchInfo> match_info, 63 TNode<Number> last_index);
|
/third_party/ffmpeg/libavcodec/ |
H A D | dvdec.c | 267 int last_index = gb->size_in_bits; in dv_decode_ac() local 285 /* get the AC coefficients until last_index is reached */ in dv_decode_ac() 301 if (re_index + vlc_len > last_index) { in dv_decode_ac() 303 mb->partial_bit_count = last_index - re_index; in dv_decode_ac() 305 re_index = last_index; in dv_decode_ac() 384 int mb_index, mb_x, mb_y, last_index; in dv_decode_video_segment() local 432 last_index = s->sys->block_sizes[j]; in dv_decode_video_segment() 433 init_get_bits(&gb, buf_ptr, last_index); in dv_decode_video_segment() 459 buf_ptr += last_index >> 3; in dv_decode_video_segment()
|
H A D | mjpegenc.c | 425 int component, dc, last_index, val, run; in record_block() local 441 last_index = s->block_last_index[n]; in record_block() 444 for(i=1;i<=last_index;i++) { in record_block() 461 if (last_index < 63 || run != 0) in record_block() 468 int component, dc, run, last_index, val; in encode_block() local 491 last_index = s->block_last_index[n]; in encode_block() 492 for(i=1;i<=last_index;i++) { in encode_block() 519 if (last_index < 63 || run != 0) in encode_block()
|
H A D | msmpeg4enc.c | 561 int level, run, last, i, j, last_index; in ff_msmpeg4_encode_block() local 589 for(last_index=63; last_index>=0; last_index--){ in ff_msmpeg4_encode_block() 590 if(block[scantable[last_index]]) break; in ff_msmpeg4_encode_block() 592 s->block_last_index[n]= last_index; in ff_msmpeg4_encode_block() 594 last_index = s->block_last_index[n]; in ff_msmpeg4_encode_block() 597 for (; i <= last_index; i++) { in ff_msmpeg4_encode_block() 602 last = (i == last_index); in ff_msmpeg4_encode_block()
|
H A D | ituh263enc.c | 307 int level, run, last, i, j, last_index, last_non_zero, sign, slevel, code; in h263_encode_block() local 340 last_index = s->block_last_index[n]; in h263_encode_block() 342 for (; i <= last_index; i++) { in h263_encode_block() 347 last = (i == last_index); in h263_encode_block() 374 last_index = s->block_last_index[n]; in h263_encode_block() 376 for (; i <= last_index; i++) { in h263_encode_block() 381 last = (i == last_index); in h263_encode_block()
|
H A D | parser.c | 220 pc->last_index = pc->index; in ff_combine_frame() 270 pc->state = pc->state << 8 | pc->buffer[pc->last_index + next]; in ff_combine_frame() 271 pc->state64 = pc->state64 << 8 | pc->buffer[pc->last_index + next]; in ff_combine_frame()
|
H A D | speedhqenc.c | 193 int alevel, level, last_non_zero, dc, i, j, run, last_index, sign; in encode_block() local 206 last_index = s->block_last_index[n]; in encode_block() 208 for (i = 1; i <= last_index; i++) { in encode_block()
|
H A D | h261enc.c | 182 int level, run, i, j, last_index, last_non_zero, sign, slevel, code; in h261_encode_block() local 214 last_index = s->block_last_index[n]; in h261_encode_block() 216 for (; i <= last_index; i++) { in h261_encode_block() 243 if (last_index > -1) in h261_encode_block()
|
H A D | parser.h | 31 int last_index; member
|
H A D | dnxhdenc.c | 579 int last_index, int n) in dnxhd_encode_block() 587 for (i = 1; i <= last_index; i++) { in dnxhd_encode_block() 605 int qscale, int last_index) in dnxhd_unquantize_c() 619 for (i = 1; i <= last_index; i++) { in dnxhd_unquantize_c() 662 int dnxhd_calc_ac_bits(DNXHDEncContext *ctx, int16_t *block, int last_index) in dnxhd_calc_ac_bits() argument 667 for (i = 1; i <= last_index; i++) { in dnxhd_calc_ac_bits() 846 int overflow, nbits, diff, last_index; in dnxhd_calc_bits_thread() local 850 last_index = ctx->m.dct_quantize(&ctx->m, block, in dnxhd_calc_bits_thread() 853 ac_bits += dnxhd_calc_ac_bits(ctx, block, last_index); in dnxhd_calc_bits_thread() 867 dnxhd_unquantize_c(ctx, block, i, qscale, last_index); in dnxhd_calc_bits_thread() 578 dnxhd_encode_block(DNXHDEncContext *ctx, int16_t *block, int last_index, int n) dnxhd_encode_block() argument 604 dnxhd_unquantize_c(DNXHDEncContext *ctx, int16_t *block, int n, int qscale, int last_index) dnxhd_unquantize_c() argument 904 int last_index = ctx->m.dct_quantize(&ctx->m, block, dnxhd_encode_thread() local [all...] |
H A D | mpeg4videoenc.c | 298 const int last_index = s->block_last_index[n]; in mpeg4_encode_block() local 303 if (last_index < 1) in mpeg4_encode_block() 309 if (last_index < 0) in mpeg4_encode_block() 318 for (; i < last_index; i++) { in mpeg4_encode_block() 335 /* if (i <= last_index) */ { in mpeg4_encode_block() 357 const int last_index = s->block_last_index[n]; in mpeg4_get_block_length() local 363 if (last_index < 1) in mpeg4_get_block_length() 368 if (last_index < 0) in mpeg4_get_block_length() 376 for (; i < last_index; i++) { in mpeg4_get_block_length() 390 /* if (i <= last_index) */ { in mpeg4_get_block_length() [all...] |
/third_party/skia/third_party/externals/spirv-tools/source/val/ |
H A D | validate_literals.cpp | 74 int last_index = operand.offset + operand.num_words - 1; 75 const uint32_t upper_word = inst->word(last_index);
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/ |
H A D | validate_literals.cpp | 74 int last_index = operand.offset + operand.num_words - 1; 75 const uint32_t upper_word = inst->word(last_index);
|
/third_party/spirv-tools/source/val/ |
H A D | validate_literals.cpp | 71 int last_index = operand.offset + operand.num_words - 1; 72 const uint32_t upper_word = inst->word(last_index);
|
/third_party/curl/lib/ |
H A D | hash.c | 342 int last_index = -1; 353 if(iter.slot_index != last_index) { 355 if(last_index >= 0) { 358 last_index = iter.slot_index;
|
/third_party/ffmpeg/libavformat/ |
H A D | img2dec.c | 118 int range, last_index, range1, first_index; in find_image_range() local 136 last_index = first_index; in find_image_range() 145 last_index + range1) < 0) in find_image_range() 154 /* we are sure than image last_index + range exists */ in find_image_range() 157 last_index += range; in find_image_range() 160 *plast_index = last_index; in find_image_range() 189 int first_index = 1, last_index = 1; in ff_img_read_header() local 275 last_index = s->globstate.gl_pathc - 1; in ff_img_read_header() 280 if (find_image_range(s1->pb, &first_index, &last_index, s->path, in ff_img_read_header() 295 last_index in ff_img_read_header() [all...] |
/third_party/node/deps/openssl/openssl/crypto/srp/ |
H A D | srp_vfy.c | 399 char *last_index = NULL; in SRP_VBASE_init() local 422 last_index = SRP_get_default_gN(NULL)->id; in SRP_VBASE_init() 445 last_index = pp[DB_srpid]; in SRP_VBASE_init() 473 if (last_index != NULL) { in SRP_VBASE_init() 476 if (((gN = SRP_get_gN_by_id(last_index, SRP_gN_tab)) == NULL)) { in SRP_VBASE_init()
|
/third_party/openssl/crypto/srp/ |
H A D | srp_vfy.c | 400 char *last_index = NULL; in SRP_VBASE_init() local 423 last_index = SRP_get_default_gN(NULL)->id; in SRP_VBASE_init() 446 last_index = pp[DB_srpid]; in SRP_VBASE_init() 474 if (last_index != NULL) { in SRP_VBASE_init() 477 if (((gN = SRP_get_gN_by_id(last_index, SRP_gN_tab)) == NULL)) { in SRP_VBASE_init()
|
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-regexp.cc | 1367 uint32_t last_index = 0; in RegExpReplace() local 1369 Handle<Object> last_index_obj(regexp->last_index(), isolate); in RegExpReplace() 1373 last_index = PositiveNumberToUint32(*last_index_obj); in RegExpReplace() 1381 if (last_index <= static_cast<uint32_t>(string->length())) { in RegExpReplace() 1384 RegExp::Exec(isolate, regexp, string, last_index, last_match_info), in RegExpReplace() 1511 uint32_t last_index = 0; in RUNTIME_FUNCTION() local 1513 Handle<Object> last_index_obj(regexp->last_index(), isolate); in RUNTIME_FUNCTION() 1516 last_index = PositiveNumberToUint32(*last_index_obj); in RUNTIME_FUNCTION() 1524 if (last_index <= static_cast<uint32_t>(subject->length())) { in RUNTIME_FUNCTION() 1527 RegExp::Exec(isolate, regexp, subject, last_index, last_match_inf in RUNTIME_FUNCTION() [all...] |
/third_party/skia/src/shaders/gradients/ |
H A D | Sk4fGradientBase.cpp | 194 const int last_index = count - 1 - first_index; in init() local 225 const Sk4f clamp_color = pack_color(xformedColors.fColors[last_index], in init()
|
/third_party/python/Lib/ |
H A D | pprint.py | 382 last_index = len(items) - 1 384 last = i == last_index 397 last_index = len(items) - 1 399 last = i == last_index
|