Searched refs:current (Results 251 - 275 of 1571) sorted by relevance

<<11121314151617181920>>

/external/libchrome/base/threading/
H A Dthread_task_runner_handle.cc27 ThreadTaskRunnerHandle* current = lazy_tls_ptr.Pointer()->Get(); local
28 DCHECK(current);
29 return current->task_runner_;
/external/mesa3d/src/gallium/drivers/radeon/
H A Dr600_cs.h134 assert(cs->current.cdw + 2 + num <= cs->current.max_dw);
148 assert(cs->current.cdw + 2 + num <= cs->current.max_dw);
164 assert(cs->current.cdw + 3 <= cs->current.max_dw);
173 assert(cs->current.cdw + 2 + num <= cs->current.max_dw);
187 assert(cs->current.cdw + 2 + num <= cs->current
[all...]
/external/selinux/libsepol/cil/src/
H A Dcil_verify.h61 int cil_verify_expr_syntax(struct cil_tree_node *current, enum cil_flavor op, enum cil_flavor expr_flavor);
63 int cil_verify_constraint_expr_syntax(struct cil_tree_node *current, enum cil_flavor op);
67 int __cil_verify_ordered(struct cil_tree_node *current, enum cil_flavor flavor);
/external/v8/src/
H A Dallocation-site-scopes.cc26 DCHECK(!current().is_null());
29 PrintF("Creating nested site (top, current, new) (%p, %p, %p)\n",
31 static_cast<void*>(*current()),
34 current()->set_nested_site(*scope_site);
H A Dhandles.cc53 HandleScopeData* current = isolate->handle_scope_data(); local
55 Object** result = current->next;
57 DCHECK(result == current->limit);
60 if (!Utils::ApiCheck(current->level != current->sealed_level,
70 if (current->limit != limit) {
71 current->limit = limit;
72 DCHECK(limit - current->next < kHandleBlockSize);
77 // current handle scope by allocating a new handle block.
78 if (result == current
92 HandleScopeData* current = isolate->handle_scope_data(); local
[all...]
/external/v8/src/regexp/
H A Dregexp-parser.cc178 // Used to store current state while parsing subexpressions.
185 switch (current()) {
284 if (current() == '?') {
337 // Store current state and begin new disjunction parsing.
540 if (!unicode() || IsSyntaxCharacterOrSlash(current())) {
541 builder->AddCharacter(current());
562 builder->AddUnicodeCharacter(current());
565 } // end switch(current())
569 switch (current()) {
606 if (current()
[all...]
/external/v8/src/interpreter/
H A Dbytecode-peephole-optimizer.cc85 const BytecodeNode* const current) const {
103 // source position information is applied to the current node
115 !current->source_info().is_valid());
122 BytecodeNode* const current) {
124 BytecodeNode node(new_bytecode, last->operand(0), current->operand(0),
125 current->operand(1), current->source_info());
134 BytecodeNode* const current) {
136 BytecodeNode node(new_bytecode, 0, current->operand(0), current
120 TransformLdaSmiBinaryOpToBinaryOpWithSmi( Bytecode new_bytecode, BytecodeNode* const last, BytecodeNode* const current) argument
132 TransformLdaZeroBinaryOpToBinaryOpWithZero( Bytecode new_bytecode, BytecodeNode* const last, BytecodeNode* const current) argument
144 TransformEqualityWithNullOrUndefined(Bytecode new_bytecode, BytecodeNode* const last, BytecodeNode* const current) argument
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/
H A DGaussNewtonOptimizer.java68 VectorialPointValuePair current = null;
74 VectorialPointValuePair previous = current;
77 current = new VectorialPointValuePair(point, objective);
125 converged = checker.converged(getIterations(), previous, current);
131 return current;
/external/desugar/java/com/google/devtools/common/options/testing/
H A DOptionsTester.java42 Class<? extends OptionsBase> current = optionsClass;
43 while (!OptionsBase.class.equals(current)) {
44 builder.add(current.getDeclaredFields());
49 (Class<? extends OptionsBase>) current.getSuperclass();
50 current = superclass;
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/prefill/
H A DBitmapPreFiller.java26 private BitmapPreFillRunner current; field in class:BitmapPreFiller
35 if (current != null) {
36 current.cancel();
50 current = new BitmapPreFillRunner(bitmapPool, memoryCache, allocationOrder);
51 handler.post(current);
/external/guava/guava-tests/benchmark/com/google/common/collect/
H A DConcurrentHashMultisetBenchmark.java255 int current = count(element);
256 if (current == 0) {
261 checkArgument(occurrences <= Integer.MAX_VALUE - current,
263 occurrences, current);
264 int next = current + occurrences;
265 if (countMap.replace(element, current, next)) {
266 return current;
290 int current = count(element);
291 if (current == 0) {
294 if (occurrences >= current) {
[all...]
/external/linux-kselftest/tools/testing/selftests/powerpc/pmu/
H A Dcount_instructions.c76 u64 current, overhead; local
84 current = events[0].result.value;
85 if (current < overhead) {
86 printf("Replacing overhead %llu with %llu\n", overhead, current);
87 overhead = current;
/external/linux-kselftest/tools/testing/selftests/powerpc/pmu/ebb/
H A Dinstruction_count_test.c72 uint64_t current, overhead; local
80 current = event->result.value;
81 if (current < overhead) {
82 printf("Replacing overhead %lu with %lu\n", overhead, current);
83 overhead = current;
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_state_immediate.c46 if (i915->current.immediate[offset] == state)
49 i915->current.immediate[offset] = state;
76 unsigned vertex_size = i915->current.vertex_info.size;
104 LIS2 = i915->current.vertex_info.hwfmt[1];
105 LIS4 = i915->current.vertex_info.hwfmt[0];
/external/python/cpython3/Modules/
H A D_weakref.c93 PyWeakReference *current = *list; local
96 PyList_SET_ITEM(result, i, (PyObject *) current);
97 Py_INCREF(current);
98 current = current->wr_next;
/external/skia/src/pathops/
H A DSkPathOpsTightBounds.cpp73 SkOpContour* current = contourList; local
74 SkPathOpsBounds bounds = current->bounds();
75 while ((current = current->next())) {
76 bounds.add(current->bounds());
/external/skqp/src/pathops/
H A DSkPathOpsTightBounds.cpp73 SkOpContour* current = contourList; local
74 SkPathOpsBounds bounds = current->bounds();
75 while ((current = current->next())) {
76 bounds.add(current->bounds());
/external/mesa3d/src/compiler/glsl/
H A Dir_function_detect_recursion.cpp158 : current(NULL)
188 this->current = this->get_function(sig);
195 this->current = NULL;
201 /* At global scope this->current will be NULL. Since there is no way to
205 if (this->current == NULL)
214 this->current->callees.push_tail(node);
219 node->func = this->current;
224 function *current; member in class:__anon15840::has_recursion_visitor
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/
H A DActivityFlinger.java70 Class<? extends Activity> current = null;
74 || current != null;) {
75 if (current == null) {
76 current = it.next();
83 mActivityTransitions.put(current, new ActivityTransition(left, right));
84 left = current;
85 current = right;
/external/swiftshader/src/OpenGL/compiler/
H A DAnalyzeCallDepth.cpp21 TIntermSequence::iterator current = start; local
22 for (++current; current != end; ++current)
24 (*current)->traverse(analysis);
25 if((*current)->getAsBranchNode()) // Kill, Break, Continue or Return
30 return current;
/external/v8/src/snapshot/
H A Dstartup-serializer.cc155 for (Object** current = start; current < end; current++) {
156 int root_index = static_cast<int>(current - start);
161 if ((*current)->IsSmi()) {
163 PutSmi(Smi::cast(*current));
165 SerializeObject(HeapObject::cast(*current), kPlain, kStartOfObject,
H A Ddeserializer.cc417 Object** current = reinterpret_cast<Object**>(address); local
418 Object** limit = current + (size >> kPointerSizeLog2);
420 if (ReadData(current, limit, space_number, address)) {
465 // Assert that the current reserved chunk is still big enough.
476 Object** current) {
481 UnalignedCopy(current++, &resource_obj);
482 return current;
485 bool Deserializer::ReadData(Object** current, Object** limit, int source_space, argument
489 // are no new space objects in current boot snapshots, so it's not needed,
494 while (current < limi
[all...]
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
H A Dsmooth.c29 int16_t *current, /* (i) the un enhanced residual for
49 max1=WebRtcSpl_MaxAbsValueW16(current, ENH_BLOCKL);
57 w00=WebRtcSpl_DotProductWithScale(current,current,ENH_BLOCKL,scale);
59 w10=WebRtcSpl_DotProductWithScale(surround,current,ENH_BLOCKL,scale);
92 errs = WebRtcIlbcfix_Smooth_odata(odata, current, surround, C);
203 current, B, 14,
27 WebRtcIlbcfix_Smooth( int16_t *odata, int16_t *current, int16_t *surround ) argument
/external/libchrome/base/message_loop/
H A Dmessage_loop.cc94 // current one on this thread. Otherwise, this loop is being destructed before
96 // may be current.
97 DCHECK((pump_ && current() == this) || (!pump_ && current() != this));
139 if (current() == this)
144 MessageLoop* MessageLoop::current() { function in class:base::MessageLoop
207 DCHECK_EQ(this, current());
213 DCHECK_EQ(this, current());
218 DCHECK_EQ(this, current());
224 DCHECK_EQ(this, current());
[all...]
/external/scapy/scapy/
H A Dvolatile.py450 current = stack
459 current = [current]
460 current[0].append(current)
462 p = current[0]
465 ch = ("choice",[current])
468 ch[1].append(current)
469 current = [p]
471 ch = current[
[all...]

Completed in 682 milliseconds

<<11121314151617181920>>