Lines Matching refs:UintPtrT

340   TNode<IntPtrT> ParameterToIntPtr(TNode<UintPtrT> value) {
474 TNode<UintPtrT> OpName(TNode<UintPtrT> a, TNode<UintPtrT> b) { \
491 TNode<BoolT> OpName(TNode<UintPtrT> a, TNode<UintPtrT> b) { \
559 TNode<IntPtrT> PopulationCountFallback(TNode<UintPtrT> value);
573 TNode<UintPtrT> UintPtrMin(TNode<UintPtrT> left, TNode<UintPtrT> right);
1502 void FixedArrayBoundsCheck(TNode<FixedArrayBase> array, TNode<UintPtrT> index,
1604 TNode<UintPtrT> index,
1607 TNode<RawPtrT> data_pointer, TNode<UintPtrT> index,
1616 TNode<BigInt> BigIntFromUint64(TNode<UintPtrT> value);
1619 TNode<BigInt> BigIntFromUint32Pair(TNode<UintPtrT> low, TNode<UintPtrT> high);
1736 // TODO(v8:9708): Do we want to keep both IntPtrT and UintPtrT variants?
1738 std::is_same<TIndex, UintPtrT>::value ||
1740 "Only Smi, UintPtrT or IntPtrT index is allowed");
1805 TNode<FeedbackVector> feedback_vector, TNode<UintPtrT> slot,
1878 TNode<UintPtrT> digit);
1880 TNode<UintPtrT> digit);
1883 TNode<UintPtrT> LoadBigIntDigit(TNode<BigInt> bigint, intptr_t digit_index);
1884 TNode<UintPtrT> LoadBigIntDigit(TNode<BigInt> bigint,
1888 TNode<ByteArray> AllocateNonEmptyByteArray(TNode<UintPtrT> length,
1893 TNode<UintPtrT> length, AllocationFlags flags = AllocationFlag::kNone);
2116 TNode<UintPtrT> slot_id);
2432 TNode<Number> ChangeUintPtrToTagged(TNode<UintPtrT> value);
2458 TNode<UintPtrT> TimesSystemPointerSize(TNode<UintPtrT> value) {
2466 TNode<UintPtrT> TimesTaggedSize(TNode<UintPtrT> value) {
2471 TNode<UintPtrT> TimesDoubleSize(TNode<UintPtrT> value) {
2753 TNode<Uint16T> StringCharCodeAt(TNode<String> string, TNode<UintPtrT> index);
2823 TNode<UintPtrT> DecodeWord(TNode<WordT> word) {
2830 TNode<UintPtrT> DecodeWordFromWord32(TNode<Word32T> word32) {
2847 TNode<UintPtrT> DecodeWord(TNode<WordT> word, uint32_t shift, uintptr_t mask);
2859 TNode<WordT> UpdateWord(TNode<WordT> word, TNode<UintPtrT> value,
2867 TNode<Word32T> UpdateWordInWord32(TNode<Word32T> word, TNode<UintPtrT> value,
2890 TNode<WordT> UpdateWord(TNode<WordT> word, TNode<UintPtrT> value,
3400 TNode<UintPtrT> slot_id, UpdateFeedbackMode mode);
3403 TNode<UintPtrT> slot_id);
3406 TNode<UintPtrT> slot_id);
3411 TNode<UintPtrT> slot_id, const char* reason);
3452 void BigIntToRawBytes(TNode<BigInt> bigint, TVariable<UintPtrT>* var_low,
3453 TVariable<UintPtrT>* var_high);
3463 TNode<UintPtrT> length, TNode<IntPtrT> key, Label* bailout);
3481 TNode<FeedbackVector> feedback_vector, TNode<UintPtrT> slot,
3486 TNode<FeedbackVector> feedback_vector, TNode<UintPtrT> slot);
3658 void ForInPrepare(TNode<HeapObject> enumerator, TNode<UintPtrT> slot,
3689 TNode<UintPtrT> LoadJSArrayBufferViewByteLength(
3692 TNode<UintPtrT> LoadJSArrayBufferViewByteOffset(
3699 TNode<UintPtrT> LoadJSTypedArrayLengthAndCheckDetached(
3703 TNode<UintPtrT> LoadVariableLengthJSTypedArrayLength(
3708 TNode<UintPtrT> LoadVariableLengthJSTypedArrayByteLength(
3711 TNode<UintPtrT> LoadVariableLengthJSArrayBufferViewByteLength(
3722 void CheckJSTypedArrayIndex(TNode<UintPtrT> index,
4393 // TODO(v8:9880): Use UintPtrT here.