HomeSort by relevance Sort by last modified time
    Searched defs:current (Results 101 - 125 of 2998) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/google-breakpad/src/common/dwarf/
dwarf2diehandler.cc 141 HandlerStack &current = die_handlers_.top(); local
143 assert(offset == current.offset_);
144 current.handler_->ProcessAttributeUnsigned(attr, form, data);
151 HandlerStack &current = die_handlers_.top(); local
153 assert(offset == current.offset_);
154 current.handler_->ProcessAttributeSigned(attr, form, data);
161 HandlerStack &current = die_handlers_.top(); local
163 assert(offset == current.offset_);
164 current.handler_->ProcessAttributeReference(attr, form, data);
172 HandlerStack &current = die_handlers_.top() local
182 HandlerStack &current = die_handlers_.top(); local
192 HandlerStack &current = die_handlers_.top(); local
    [all...]
  /external/icu/icu4c/source/common/
bytestrie.cpp 69 BytesTrie::current() const { function in class:BytesTrie
82 // Branch according to the current byte.
212 return current();
  /external/icu/icu4c/source/common/unicode/
caniter.h 91 * Gets the NFD form of the current source we are iterating over.
176 // current is used in iterating to combine pieces
177 int32_t *current; member in class:U_FINAL
  /external/libbrillo/brillo/message_loops/
message_loop.cc 24 MessageLoop* MessageLoop::current() { function in class:brillo::MessageLoop
43 "This is not the MessageLoop bound to the current thread.";
  /external/libchrome/base/threading/
thread_task_runner_handle.cc 27 ThreadTaskRunnerHandle* current = lazy_tls_ptr.Pointer()->Get(); local
28 DCHECK(current);
29 return current->task_runner_;
  /external/libmojo/mojo/edk/system/
request_context.cc 69 RequestContext* RequestContext::current() { function in class:mojo::edk::RequestContext
  /external/libmojo/mojo/public/cpp/bindings/lib/
sync_call_restrictions.cc 21 static SyncCallSettings* current();
45 SyncCallSettings* SyncCallSettings::current() { function in class:mojo::__anon25186::SyncCallSettings
72 if (!SyncCallSettings::current()->allowed()) {
83 SyncCallSettings::current()->IncreaseScopedAllowCount();
88 SyncCallSettings::current()->DecreaseScopedAllowCount();
sync_handle_registry.cc 22 scoped_refptr<SyncHandleRegistry> SyncHandleRegistry::current() { function in class:mojo::SyncHandleRegistry
  /external/linux-kselftest/tools/testing/selftests/powerpc/pmu/
count_instructions.c 76 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/
instruction_count_test.c 72 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/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_create/
1-5.c 109 void *current; local
111 long stacksize = sysconf(_SC_THREAD_STACK_MIN); /* make sure we touch the current stack memory */
118 current = overflow(&current);
133 if (((long)arg) < ((long)&current)) {
135 if (((long)&current) - ((long)arg) >= stacksize) {
138 arg, &current);
143 if (((long)arg) - ((long)&current) >= stacksize) {
146 arg, &current);
182 output("Current pos : %p\n", &ret)
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
BitWriterBuffer.java 22 int current = (buffer.get(initialPos + position / 8)); local
23 current = current < 0 ? current + 256 : current;
24 current += i << (left - numBits);
25 buffer.put(initialPos + position / 8, (byte) (current > 127 ? current - 256 : current));
  /external/opencv/
WLNonFileByteStream.cpp 103 uchar *current = m_current; local
105 if( current+1 < m_end )
107 current[0] = (uchar)val;
108 current[1] = (uchar)(val >> 8);
109 m_current = current + 2;
121 uchar *current = m_current; local
123 if( current+3 < m_end )
125 current[0] = (uchar)val;
126 current[1] = (uchar)(val >> 8);
127 current[2] = (uchar)(val >> 16);
    [all...]
  /external/python/cpython2/Modules/
_weakref.c 44 PyWeakReference *current = *list; local
47 PyList_SET_ITEM(result, i, (PyObject *) current);
48 Py_INCREF(current);
49 current = current->wr_next;
  /external/skia/bench/
ChromeBench.cpp 469 SkRect current; local
470 setRectangle(current, i);
472 canvas->drawRect(current, paint);
478 void setRectangle(SkRect& current, int i) {
479 current.set(0, 0,
  /external/skia/src/pathops/
SkPathOpsTightBounds.cpp 73 SkOpContour* current = contourList; local
74 SkPathOpsBounds bounds = current->bounds();
75 while ((current = current->next())) {
76 bounds.add(current->bounds());
  /external/skia/tools/skiaserve/urlhandlers/
BreakHandler.cpp 68 SkColor current = request->getPixel(x, y); local
69 if (current != target) {
71 endColor.append(Json::Value(SkColorGetR(current)));
72 endColor.append(Json::Value(SkColorGetG(current)));
73 endColor.append(Json::Value(SkColorGetB(current)));
74 endColor.append(Json::Value(SkColorGetA(current)));
  /external/skqp/bench/
ChromeBench.cpp 469 SkRect current; local
470 setRectangle(current, i);
472 canvas->drawRect(current, paint);
478 void setRectangle(SkRect& current, int i) {
479 current.set(0, 0,
  /external/skqp/src/pathops/
SkPathOpsTightBounds.cpp 73 SkOpContour* current = contourList; local
74 SkPathOpsBounds bounds = current->bounds();
75 while ((current = current->next())) {
76 bounds.add(current->bounds());
  /external/skqp/tools/skiaserve/urlhandlers/
BreakHandler.cpp 68 SkColor current = request->getPixel(x, y); local
69 if (current != target) {
71 endColor.append(Json::Value(SkColorGetR(current)));
72 endColor.append(Json::Value(SkColorGetG(current)));
73 endColor.append(Json::Value(SkColorGetB(current)));
74 endColor.append(Json::Value(SkColorGetA(current)));
  /external/tensorflow/tensorflow/compiler/xla/service/
flatten_call_graph.cc 93 auto current = worklist.back(); local
95 for (auto* instruction : current->instructions()) {
  /external/v8/src/crankshaft/
lithium-inl.h 44 LOperand* TempIterator::Current() {
70 LOperand* InputIterator::Current() {
85 LOperand* current = instr_->InputAt(current_); local
86 if (current != NULL && !current->IsConstantOperand()) break;
101 LOperand* UseIterator::Current() {
103 LOperand* result = input_iterator_.Done() ? env_iterator_.Current()
104 : input_iterator_.Current();
  /external/vulkan-validation-layers/layers/
parameter_name.h 111 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();
  /frameworks/base/sax/java/android/sax/
Children.java 34 Child current = children[index]; local
35 if (current == null) {
37 current = new Child(parent, uri, localName, parent.depth + 1, hash);
38 children[index] = current;
39 return current;
44 if (current.hash == hash
45 && current.uri.compareTo(uri) == 0
46 && current.localName.compareTo(localName) == 0) {
48 return current;
51 previous = current;
69 Child current = children[index]; local
    [all...]
  /frameworks/support/app-toolkit/common/src/main/java/androidx/arch/core/internal/
FastSafeIterableMap.java 46 Entry<K, V> current = get(key); local
47 if (current != null) {
48 return current.mValue;

Completed in 916 milliseconds

1 2 3 45 6 7 8 91011>>