Searched refs:current (Results 176 - 200 of 1571) sorted by relevance

1234567891011>>

/external/llvm/test/MC/Mips/mips32r6/
H A Dinvalid.s1 # Instructions that are available for the current ISA but should be rejected by
/external/llvm/test/MC/Mips/mips64r6/
H A Dinvalid.s1 # Instructions that are available for the current ISA but should be rejected by
/external/lzma/Java/Tukaani/
H A DAndroid.mk22 LOCAL_SDK_VERSION = current
/external/v8/src/crankshaft/
H A Dhydrogen-infer-types.cc38 HValue* current = worklist_.RemoveLast(); local
39 in_worklist_.Remove(current->id());
40 if (current->UpdateInferredType()) {
41 for (HUseIterator it(current->uses()); !it.Done(); it.Advance()) {
H A Dhydrogen-representation-changes.cc176 HPhi* current = number_worklist.RemoveLast(); local
177 for (int i = current->OperandCount() - 1; i >= 0; --i) {
178 HValue* input = current->OperandAt(i);
182 input->id(), current->id(), current->Mnemonic());
193 HPhi* current = int_worklist.RemoveLast(); local
194 for (int i = 0; i < current->OperandCount(); ++i) {
195 HValue* input = current->OperandAt(i);
201 input->id(), current->id(), current
210 HPhi* current = smi_worklist.RemoveLast(); local
[all...]
/external/e2fsprogs/resize/
H A Dsim_progress.c24 __u32 current; member in struct:ext2_sim_progress
51 void ext2fs_progress_update(ext2_sim_progmeter prog, __u32 current) argument
55 level = prog->barwidth * current / prog->maxdone;
56 old_level = prog->barwidth * prog->current / prog->maxdone;
57 prog->current = current;
101 prog->current = 0;
/external/syslinux/com32/lua/src/
H A Dllex.c32 #define next(ls) (ls->current = zgetc(ls->z))
36 #define currIsNewline(ls) (ls->current == '\n' || ls->current == '\r')
50 #define save_and_next(ls) (save(ls, ls->current), next(ls))
153 int old = ls->current;
156 if (currIsNewline(ls) && ls->current != old)
167 ls->current = firstchar;
190 if (ls->current == '\0' || !strchr(set, ls->current))
217 ** the one defined in the current local
[all...]
/external/eigen/Eigen/src/SparseCore/
H A DSparseColEtree.h133 StorageIndex current = n, first, next; local
136 // No kid for the current node
137 first = first_kid(current);
139 // no kid for the current node
143 post(current) = postnum++;
146 next = next_kid(current);
150 current = parent(current);
152 post(current) = postnum++;
155 next = next_kid(current);
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DDictionaryBreakEngine.java32 private int current; // The candidate we're currently looking at field in class:DictionaryBreakEngine.PossibleWord
55 current = count[0] - 1;
56 mark = current;
66 // Backup from the current candidate to the next shorter one; return true if that exists
69 if (current > 0) {
70 fIter.setIndex(offset + lengths[--current]);
81 // Mark the current candidate as the one we like
83 mark = current;
197 // The span to break begins at the current position int the text, and
201 int current;
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DDictionaryBreakEngine.java31 private int current; // The candidate we're currently looking at field in class:DictionaryBreakEngine.PossibleWord
54 current = count[0] - 1;
55 mark = current;
65 // Backup from the current candidate to the next shorter one; return true if that exists
68 if (current > 0) {
69 fIter.setIndex(offset + lengths[--current]);
80 // Mark the current candidate as the one we like
82 mark = current;
196 // The span to break begins at the current position int the text, and
200 int current;
[all...]
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_state_emit.c182 if (i915->current.target_fixup_format == PIPE_FORMAT_A8_UNORM) {
213 i915->current.immediate[I915_IMMEDIATE_S0]);
221 emit_immediate_s5(i915, i915->current.immediate[i]);
223 emit_immediate_s6(i915, i915->current.immediate[i]);
225 OUT_BATCH(i915->current.immediate[i]);
242 OUT_BATCH(i915->current.dynamic[i]);
251 if (i915->current.cbuf_bo && (i915->static_dirty & I915_DST_BUF_COLOR)) {
253 = i915->current.cbuf_bo;
257 if (i915->current.depth_bo && (i915->static_dirty & I915_DST_BUF_DEPTH)) {
259 = i915->current
[all...]
/external/protobuf/src/google/protobuf/io/
H A Dtokenizer_unittest.cc258 EXPECT_EQ(Tokenizer::TYPE_START, tokenizer.current().type);
259 EXPECT_EQ("", tokenizer.current().text);
260 EXPECT_EQ(0, tokenizer.current().line);
261 EXPECT_EQ(0, tokenizer.current().column);
262 EXPECT_EQ(0, tokenizer.current().end_column);
268 EXPECT_EQ(kSimpleTokenCases_case.type, tokenizer.current().type);
270 EXPECT_EQ(kSimpleTokenCases_case.input, tokenizer.current().text);
272 EXPECT_EQ(0, tokenizer.current().line);
273 EXPECT_EQ(0, tokenizer.current().column);
275 tokenizer.current()
[all...]
/external/webrtc/webrtc/system_wrappers/source/spreadsortlib/
H A Dspreadsort.hpp65 find_extremes(RandomAccessIter current, RandomAccessIter last, RandomAccessIter & max, RandomAccessIter & min) argument
67 min = max = current;
69 while(++current < last) {
70 if(*max < *current)
71 max = current;
72 else if(*current < *min)
73 min = current;
80 find_extremes(RandomAccessIter current, RandomAccessIter last, RandomAccessIter & max, RandomAccessIter & min, compare comp) argument
82 min = max = current;
83 while(++current < las
424 find_extremes(RandomAccessIter current, RandomAccessIter last, div_type & max, div_type & min, right_shift shift) argument
473 find_extremes(RandomAccessIter current, RandomAccessIter last, cast_type & max, cast_type & min) argument
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DParser.as61 var current:Token = TokenStream(input).LT(1);
62 if ( current.type == TokenConstants.EOF ) {
63 current = TokenStream(input).LT(-1);
65 t.line = current.line;
66 t.charPositionInLine = current.charPositionInLine;
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DParser.pm48 my $current = $input->LT(1);
49 if ($current->get_type() == ANTLR::Runtime::Token->EOF) {
50 $current = $input->LT(-1);
52 $t->set_line($current->get_line());
53 $t->set_char_position_in_line($current->get_char_position_in_line());
/external/python/cpython2/Modules/
H A D_weakref.c44 PyWeakReference *current = *list; local
47 PyList_SET_ITEM(result, i, (PyObject *) current);
48 Py_INCREF(current);
49 current = current->wr_next;
/external/vulkan-validation-layers/layers/
H A Dparameter_name.h111 std::string::size_type current = 0; local
116 current = source_.find(IndexFormatSpecifier, last);
117 if (current == std::string::npos) {
120 format << source_.substr(last, (current - last)) << index;
121 last = current + IndexFormatSpecifier.length();
/external/ipsec-tools/src/racoon/
H A Dvendorid.c121 struct vendor_id *current; local
126 current = lookup_vendor_id_by_id(id);
128 return current ? current->string : NULL;
187 struct vendor_id *current; local
198 current = lookup_vendor_id_by_id(vendorid);
199 if (current == NULL) {
208 return vdup(current->hash);
222 struct vendor_id *current; local
229 current
[all...]
/external/icu/icu4c/source/tools/genrb/
H A Dwrtjava.cpp260 char* current = buf; local
264 current = buf +len;
266 uint32_t idx = strrch(current,add,'\\');
273 if(current[num]=='\\'){
282 seqLen = (current[idx+1]=='u') ? 6 : 2;
294 if (U8_IS_LEAD(*(current + byteIndex))) {
295 trailBytes = U8_COUNT_TRAIL_BYTES(*(current + byteIndex));
300 T_FileStream_write(out,current,add);
306 T_FileStream_write(out,current,bufLen-len);
335 struct SResource *current local
514 struct SResource *current = NULL; local
[all...]
/external/v8/src/zone/
H A Dzone-chunk-list.h150 ZoneChunkListIterator(typename ZoneChunkList<T>::Chunk* current, argument
152 : current_(current), position_(position) {}
183 ForwardZoneChunkListIterator(typename ZoneChunkList<T>::Chunk* current, argument
185 : ZoneChunkListIterator<T>(current, position) {}
234 ReverseZoneChunkListIterator(typename ZoneChunkList<T>::Chunk* current, argument
236 : ZoneChunkListIterator<T>(current, position) {}
352 Chunk* current = front_; local
353 while (index > current->capacity_) {
354 index -= current->capacity_;
355 current
[all...]
/external/v8/src/interpreter/
H A Dmkpeephole.cc59 PeepholeActionAndData LookupActionAndData(Bytecode last, Bytecode current);
81 Bytecode last, Bytecode current) {
84 if (current == Bytecode::kToName && Bytecodes::PutsNameInAccumulator(last)) {
91 if (Bytecodes::IsJump(current)) {
102 Bytecodes::IsAccumulatorLoadWithoutEffects(current)) {
106 // The current instruction clobbers the accumulator without reading
110 Bytecodes::GetAccumulatorUse(current) == AccumulatorUse::kWrite) {
117 if (Bytecodes::IsLdarOrStar(last) && Bytecodes::IsLdarOrStar(current)) {
127 if (Bytecodes::IsJumpIfToBoolean(current)) {
129 Bytecodes::GetJumpWithoutToBoolean(current)};
80 LookupActionAndData( Bytecode last, Bytecode current) argument
325 Bytecode current = Bytecodes::FromByte(byte_value); local
[all...]
/external/v8/src/regexp/
H A Dinterpreter-irregexp.cc28 static bool BackRefMatchesNoCase(Isolate* isolate, int from, int current, argument
34 reinterpret_cast<Address>(const_cast<uc16*>(&subject.at(current)));
41 static bool BackRefMatchesNoCase(Isolate* isolate, int from, int current, argument
47 unsigned int new_char = subject[current++];
106 current, \
158 int current,
183 *backtrack_sp++ = current;
209 registers[insn >> BYTECODE_SHIFT] = current + Load32Aligned(pc + 4);
213 current = registers[insn >> BYTECODE_SHIFT];
230 current
154 RawMatch(Isolate* isolate, const byte* code_base, Vector<const Char> subject, int* registers, int current, uint32_t current_char) argument
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DNestedMapData.java245 * Return the root of the tree where the current node lies. If the current node is the root,
303 NestedMapData current = this;
304 for (int lastDot = 0, nextDot = 0; nextDot != -1 && current != null; lastDot = nextDot + 1) {
307 current = current.followSymLinkToTheBitterEnd().getChildNode(chunk);
309 return current;
317 NestedMapData current = this;
321 NestedMapData currentSymLink = current.followSymLinkToTheBitterEnd();
322 current
613 NestedMapData current; field in class:NestedMapData.ChildrenIterator
[all...]
/external/v8/src/inspector/
H A Dv8-debugger-script.cc42 size_t current = 0; local
48 uint64_t xi = v * randomOdd[current] & 0x7FFFFFFF;
49 hashes[current] = (hashes[current] + zi[current] * xi) % prime[current];
50 zi[current] = (zi[current] * random[current]) % prime[current];
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DLinkedListMultimap.java319 Node<K, V> current; field in class:LinkedListMultimap.NodeIterator
338 current = null;
354 previous = current = next;
357 return current;
362 checkRemove(current != null);
363 if (current != next) { // after call to next()
364 previous = current.previous;
367 next = current.next;
369 removeNode(current);
370 current
413 Node<K, V> current; field in class:LinkedListMultimap.DistinctKeyIterator
452 Node<K, V> current; field in class:LinkedListMultimap.ValueForKeyIterator
[all...]

Completed in 938 milliseconds

1234567891011>>