Home
last modified time | relevance | path

Searched refs:pos_ (Results 1 - 25 of 73) sorted by relevance

123

/third_party/skia/third_party/externals/tint/src/reader/wgsl/
H A Dlexer.cc116 return pos_ >= len_; in is_eof()
143 auto pos = pos_; in skip_whitespace_and_comments()
144 while (!is_eof() && is_whitespace(content_->data[pos_])) { in skip_whitespace_and_comments()
145 if (matches(pos_, "\n")) { in skip_whitespace_and_comments()
146 pos_++; in skip_whitespace_and_comments()
152 pos_++; in skip_whitespace_and_comments()
163 if (pos == pos_) in skip_whitespace_and_comments()
174 if (matches(pos_, "//")) { in skip_comment()
177 while (!is_eof() && !matches(pos_, "\n")) { in skip_comment()
178 pos_ in skip_comment()
[all...]
/third_party/node/deps/v8/src/codegen/
H A Dlabel.h42 pos_ = other.pos_;
61 V8_INLINE void Unuse() { pos_ = 0; } in Unuse()
64 V8_INLINE bool is_bound() const { return pos_ < 0; } in is_bound()
65 V8_INLINE bool is_unused() const { return pos_ == 0 && near_link_pos_ == 0; } in is_unused()
66 V8_INLINE bool is_linked() const { return pos_ > 0; } in is_linked()
72 if (pos_ < 0) return -pos_ - 1; in pos()
73 if (pos_ > 0) return pos_ in pos()
86 int pos_ = 0; global() member in v8::internal::Label
[all...]
H A Dreloc-info.cc88 *--pos_ = byte; in WriteLongPCJump()
89 return pos_; in WriteLongPCJump()
99 *--pos_ = pc_delta << kTagBits | tag; in WriteShortTaggedPC()
103 *--pos_ = static_cast<byte>(data_delta); in WriteShortData()
108 *--pos_ = static_cast<int>((rmode << kTagBits) | kDefaultTag); in WriteMode()
115 *--pos_ = pc_delta; in WriteModeAndPC()
120 *--pos_ = static_cast<byte>(number); in WriteIntData()
128 *--pos_ = static_cast<byte>(data_delta); in WriteData()
137 byte* begin_pos = pos_; in Write()
150 DCHECK_LE(begin_pos - pos_, RelocInf in Write()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DCharsTrie.java50 pos_=root_=offset; in CharsTrie()
65 pos_ = other.pos_; in CharsTrie()
86 pos_=root_; in reset()
100 return ((long)remainingMatchLength_ << 32) | pos_; in getState64()
119 pos_ = (int)state; in resetToState64()
150 state.pos=pos_; in saveState()
169 pos_=state.pos; in resetToState()
184 int pos=pos_; in current()
229 int pos=pos_; in next()
676 private int pos_; global() field in CharsTrie.Iterator
1070 private int pos_; global() field in CharsTrie
[all...]
H A DBytesTrie.java47 pos_=root_=offset; in BytesTrie()
62 pos_ = other.pos_; in BytesTrie()
83 pos_=root_; in reset()
97 return ((long)remainingMatchLength_ << 32) | pos_; in getState64()
116 pos_ = (int)state; in resetToState64()
147 state.pos=pos_; in saveState()
166 pos_=state.pos; in resetToState()
245 int pos=pos_; in current()
279 int pos=pos_; in next()
740 private int pos_; global() field in BytesTrie.Iterator
1127 private int pos_; global() field in BytesTrie
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DCharsTrie.java50 pos_=root_=offset; in CharsTrie()
63 pos_ = other.pos_; in CharsTrie()
82 pos_=root_; in reset()
95 return ((long)remainingMatchLength_ << 32) | pos_; in getState64()
113 pos_ = (int)state; in resetToState64()
142 state.pos=pos_; in saveState()
160 pos_=state.pos; in resetToState()
174 int pos=pos_; in current()
216 int pos=pos_; in next()
649 private int pos_; global() field in CharsTrie.Iterator
1043 private int pos_; global() field in CharsTrie
[all...]
H A DBytesTrie.java47 pos_=root_=offset; in BytesTrie()
60 pos_ = other.pos_; in BytesTrie()
79 pos_=root_; in reset()
92 return ((long)remainingMatchLength_ << 32) | pos_; in getState64()
110 pos_ = (int)state; in resetToState64()
139 state.pos=pos_; in saveState()
157 pos_=state.pos; in resetToState()
228 int pos=pos_; in current()
260 int pos=pos_; in next()
705 private int pos_; global() field in BytesTrie.Iterator
1087 private int pos_; global() field in BytesTrie
[all...]
/third_party/node/deps/v8/src/wasm/
H A Dwasm-module-builder.h36 pos_ = buffer_; in ZoneBuffer()
42 *(pos_++) = x; in write_u8()
47 base::WriteLittleEndianValue<uint16_t>(reinterpret_cast<Address>(pos_), x); in write_u16()
48 pos_ += 2; in write_u16()
53 base::WriteLittleEndianValue<uint32_t>(reinterpret_cast<Address>(pos_), x); in write_u32()
54 pos_ += 4; in write_u32()
59 base::WriteLittleEndianValue<uint64_t>(reinterpret_cast<Address>(pos_), x); in write_u64()
60 pos_ += 8; in write_u64()
65 LEBHelper::write_u32v(&pos_, val); in write_u32v()
70 LEBHelper::write_i32v(&pos_, va in write_i32v()
160 byte* pos_; global() member in v8::internal::wasm::ZoneBuffer
[all...]
/third_party/icu/icu4c/source/common/
H A Dbytestrieiterator.cpp28 pos_(bytes_), initialPos_(bytes_), in Iterator()
49 : bytes_(trie.bytes_), pos_(trie.pos_), initialPos_(trie.pos_), in Iterator()
72 str_->append(reinterpret_cast<const char *>(pos_), length, errorCode); in Iterator()
73 pos_+=length; in Iterator()
85 pos_=initialPos_; in reset()
92 pos_+=length; in reset()
99 BytesTrie::Iterator::hasNext() const { return pos_!=NULL || !stack_->isEmpty(); } in hasNext()
106 const uint8_t *pos=pos_; in next()
[all...]
H A Ducharstrieiterator.cpp27 pos_(uchars_), initialPos_(uchars_), in Iterator()
48 : uchars_(trie.uchars_), pos_(trie.pos_), initialPos_(trie.pos_), in Iterator()
71 str_.append(pos_, length); in Iterator()
72 pos_+=length; in Iterator()
83 pos_=initialPos_; in reset()
91 pos_+=length; in reset()
98 UCharsTrie::Iterator::hasNext() const { return pos_!=NULL || !stack_->isEmpty(); } in hasNext()
105 const UChar *pos=pos_; in next()
[all...]
H A Dbytestrie.cpp70 const uint8_t *pos=pos_; in current()
134 pos_=pos; in branchNext()
141 pos_=pos; in branchNext()
161 pos_=pos; in nextImpl()
184 const uint8_t *pos=pos_;
196 pos_=pos;
214 const uint8_t *pos=pos_;
227 pos_=pos;
247 pos_=pos;
290 pos=pos_; // branchNex
[all...]
H A Ducharstrie.cpp33 const UChar *pos=pos_; in current()
107 pos_=pos; in branchNext()
114 pos_=pos; in branchNext()
134 pos_=pos; in nextImpl()
156 const UChar *pos=pos_; in next()
165 pos_=pos; in next()
184 const UChar *pos=pos_; in next()
197 pos_=pos; in next()
217 pos_=pos; in next()
260 pos=pos_; // branchNex in next()
[all...]
/third_party/icu/icu4c/source/common/unicode/
H A Dbytestrie.h73 pos_(bytes_), remainingMatchLength_(-1) {} in BytesTrie()
89 pos_(other.pos_), remainingMatchLength_(other.remainingMatchLength_) {} in BytesTrie()
97 pos_=bytes_; in reset()
112 (uint64_t)(pos_ - bytes_); in getState64()
131 pos_ = bytes_ + (state & kState64PosMask); in resetToState64()
164 state.pos=pos_; in saveState()
181 pos_=state.pos; in resetToState()
247 const uint8_t *pos=pos_; in getValue()
263 const uint8_t *pos=pos_; in hasUniqueValue()
362 const uint8_t *pos_; global() member in BytesTrie::Iterator
559 const uint8_t *pos_; global() member in BytesTrie
[all...]
H A Ducharstrie.h71 pos_(uchars_), remainingMatchLength_(-1) {} in UCharsTrie()
87 pos_(other.pos_), remainingMatchLength_(other.remainingMatchLength_) {} in UCharsTrie()
95 pos_=uchars_; in reset()
110 (uint64_t)(pos_ - uchars_); in getState64()
129 pos_ = uchars_ + (state & kState64PosMask); in resetToState64()
162 state.pos=pos_; in saveState()
179 pos_=state.pos; in resetToState()
259 const char16_t *pos=pos_; in getValue()
276 const char16_t *pos=pos_; in hasUniqueValue()
378 const char16_t *pos_; global() member in UCharsTrie::Iterator
614 const char16_t *pos_; global() member in UCharsTrie
[all...]
/third_party/node/deps/icu-small/source/common/unicode/
H A Dbytestrie.h73 pos_(bytes_), remainingMatchLength_(-1) {} in BytesTrie()
89 pos_(other.pos_), remainingMatchLength_(other.remainingMatchLength_) {} in BytesTrie()
97 pos_=bytes_; in reset()
112 (uint64_t)(pos_ - bytes_); in getState64()
131 pos_ = bytes_ + (state & kState64PosMask); in resetToState64()
164 state.pos=pos_; in saveState()
181 pos_=state.pos; in resetToState()
247 const uint8_t *pos=pos_; in getValue()
263 const uint8_t *pos=pos_; in hasUniqueValue()
362 const uint8_t *pos_; global() member in BytesTrie::Iterator
559 const uint8_t *pos_; global() member in BytesTrie
[all...]
H A Ducharstrie.h71 pos_(uchars_), remainingMatchLength_(-1) {} in UCharsTrie()
87 pos_(other.pos_), remainingMatchLength_(other.remainingMatchLength_) {} in UCharsTrie()
95 pos_=uchars_; in reset()
110 (uint64_t)(pos_ - uchars_); in getState64()
129 pos_ = uchars_ + (state & kState64PosMask); in resetToState64()
162 state.pos=pos_; in saveState()
179 pos_=state.pos; in resetToState()
259 const char16_t *pos=pos_; in getValue()
276 const char16_t *pos=pos_; in hasUniqueValue()
378 const char16_t *pos_; global() member in UCharsTrie::Iterator
614 const char16_t *pos_; global() member in UCharsTrie
[all...]
/third_party/node/deps/icu-small/source/common/
H A Dbytestrieiterator.cpp28 pos_(bytes_), initialPos_(bytes_), in Iterator()
49 : bytes_(trie.bytes_), pos_(trie.pos_), initialPos_(trie.pos_), in Iterator()
72 str_->append(reinterpret_cast<const char *>(pos_), length, errorCode); in Iterator()
73 pos_+=length; in Iterator()
85 pos_=initialPos_; in reset()
92 pos_+=length; in reset()
99 BytesTrie::Iterator::hasNext() const { return pos_!=nullptr || !stack_->isEmpty(); } in hasNext()
106 const uint8_t *pos=pos_; in next()
[all...]
H A Ducharstrieiterator.cpp27 pos_(uchars_), initialPos_(uchars_), in Iterator()
48 : uchars_(trie.uchars_), pos_(trie.pos_), initialPos_(trie.pos_), in Iterator()
71 str_.append(pos_, length); in Iterator()
72 pos_+=length; in Iterator()
83 pos_=initialPos_; in reset()
91 pos_+=length; in reset()
98 UCharsTrie::Iterator::hasNext() const { return pos_!=nullptr || !stack_->isEmpty(); } in hasNext()
105 const char16_t *pos=pos_; in next()
[all...]
H A Dbytestrie.cpp70 const uint8_t *pos=pos_; in current()
134 pos_=pos; in branchNext()
141 pos_=pos; in branchNext()
161 pos_=pos; in nextImpl()
184 const uint8_t *pos=pos_;
196 pos_=pos;
214 const uint8_t *pos=pos_;
227 pos_=pos;
247 pos_=pos;
290 pos=pos_; // branchNex
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Dbytestrieiterator.cpp28 pos_(bytes_), initialPos_(bytes_), in Iterator()
49 : bytes_(trie.bytes_), pos_(trie.pos_), initialPos_(trie.pos_), in Iterator()
72 str_->append(reinterpret_cast<const char *>(pos_), length, errorCode); in Iterator()
73 pos_+=length; in Iterator()
85 pos_=initialPos_; in reset()
92 pos_+=length; in reset()
99 BytesTrie::Iterator::hasNext() const { return pos_!=NULL || !stack_->isEmpty(); } in hasNext()
106 const uint8_t *pos=pos_; in next()
[all...]
H A Ducharstrieiterator.cpp27 pos_(uchars_), initialPos_(uchars_), in Iterator()
48 : uchars_(trie.uchars_), pos_(trie.pos_), initialPos_(trie.pos_), in Iterator()
71 str_.append(pos_, length); in Iterator()
72 pos_+=length; in Iterator()
83 pos_=initialPos_; in reset()
91 pos_+=length; in reset()
98 UCharsTrie::Iterator::hasNext() const { return pos_!=NULL || !stack_->isEmpty(); } in hasNext()
105 const UChar *pos=pos_; in next()
[all...]
/third_party/skia/third_party/externals/icu/source/common/unicode/
H A Dbytestrie.h73 pos_(bytes_), remainingMatchLength_(-1) {} in BytesTrie()
89 pos_(other.pos_), remainingMatchLength_(other.remainingMatchLength_) {} in BytesTrie()
97 pos_=bytes_; in reset()
112 (uint64_t)(pos_ - bytes_); in getState64()
131 pos_ = bytes_ + (state & kState64PosMask); in resetToState64()
164 state.pos=pos_; in saveState()
181 pos_=state.pos; in resetToState()
247 const uint8_t *pos=pos_; in getValue()
263 const uint8_t *pos=pos_; in hasUniqueValue()
362 const uint8_t *pos_; global() member in BytesTrie::Iterator
559 const uint8_t *pos_; global() member in BytesTrie
[all...]
H A Ducharstrie.h71 pos_(uchars_), remainingMatchLength_(-1) {} in UCharsTrie()
87 pos_(other.pos_), remainingMatchLength_(other.remainingMatchLength_) {} in UCharsTrie()
95 pos_=uchars_; in reset()
110 (uint64_t)(pos_ - uchars_); in getState64()
129 pos_ = uchars_ + (state & kState64PosMask); in resetToState64()
162 state.pos=pos_; in saveState()
179 pos_=state.pos; in resetToState()
259 const char16_t *pos=pos_; in getValue()
276 const char16_t *pos=pos_; in hasUniqueValue()
378 const char16_t *pos_; global() member in UCharsTrie::Iterator
614 const char16_t *pos_; global() member in UCharsTrie
[all...]
/third_party/node/deps/brotli/c/enc/
H A Dringbuffer.h41 uint32_t pos_; member
51 rb->pos_ = 0; in RingBufferInit()
95 const size_t masked_pos = rb->pos_ & rb->mask_; in RingBufferWriteTail()
107 if (rb->pos_ == 0 && n < rb->tail_size_) { in RingBufferWrite()
114 rb->pos_ = (uint32_t)n; in RingBufferWrite()
115 RingBufferInitBuffer(m, rb->pos_, rb); in RingBufferWrite()
133 const size_t masked_pos = rb->pos_ & rb->mask_; in RingBufferWrite()
151 BROTLI_BOOL not_first_lap = (rb->pos_ & (1u << 31)) != 0; in RingBufferWrite()
155 rb->pos_ = (rb->pos_ in RingBufferWrite()
[all...]
/third_party/skia/third_party/externals/brotli/c/enc/
H A Dringbuffer.h41 uint32_t pos_; member
51 rb->pos_ = 0; in RingBufferInit()
95 const size_t masked_pos = rb->pos_ & rb->mask_; in RingBufferWriteTail()
107 if (rb->pos_ == 0 && n < rb->tail_size_) { in RingBufferWrite()
114 rb->pos_ = (uint32_t)n; in RingBufferWrite()
115 RingBufferInitBuffer(m, rb->pos_, rb); in RingBufferWrite()
133 const size_t masked_pos = rb->pos_ & rb->mask_; in RingBufferWrite()
151 BROTLI_BOOL not_first_lap = (rb->pos_ & (1u << 31)) != 0; in RingBufferWrite()
155 rb->pos_ = (rb->pos_ in RingBufferWrite()
[all...]

Completed in 15 milliseconds

123