Searched refs:current (Results 51 - 75 of 1571) sorted by relevance

1234567891011>>

/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
H A D13-8.c10 signal-catching functions are executed on the current stack if the
25 stack_t current; variable
39 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) {
58 if (sigaltstack(NULL, &current) == -1) {
H A D13-9.c10 signal-catching functions are executed on the current stack if the
25 stack_t current; variable
39 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) {
58 if (sigaltstack(NULL, &current) == -1) {
/external/annotation-tools/annotation-file-utilities/src/annotator/specification/
H A DCriterionList.java30 private Criterion current; field in class:CriterionList
38 current = null;
47 current = c;
52 current = c;
78 while (c != null && c.current != null) {
79 criteria.add(c.current);
88 if (current == null) { return "[]"; }
89 StringBuilder sb = new StringBuilder("[").append(current);
91 sb.append(", ").append(n.current);
/external/tensorflow/tensorflow/core/lib/strings/
H A Dbase64.cc92 char* current = buffer.get(); local
93 if (current == nullptr) {
102 TF_RETURN_IF_ERROR(DecodeThreeChars(b64, current));
104 current += 3;
130 TF_RETURN_IF_ERROR(DecodeThreeChars(tail, current));
132 current += remain - 1;
134 decoded->assign(buffer.get(), current - buffer.get());
151 char* current = buffer.get(); local
152 if (current == nullptr) {
162 *current
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTMAxisTraverser.java84 * Traverse to the next node after the current node.
88 * @param current The current node of the traversal. This is the last known
91 * should be set equal to current. Note that in order to test whether
97 public abstract int next(int context, int current); argument
100 * Traverse to the next node after the current node that is matched
105 * @param current The current node of the traversal. This is the last known
108 * should be set equal to current. Note that in order to test whether
115 public abstract int next(int context, int current, in argument
[all...]
/external/clang/tools/scan-build-py/libscanbuild/
H A Dshell.py27 for current in word:
28 if state == 0 and current in reserved:
30 elif state == 0 and current == '\\':
32 elif state == 1 and current in reserved | {'\\'}:
34 elif state == 0 and current == '"':
36 elif state == 2 and current == '"':
38 elif state == 0 and current == "'":
40 elif state == 3 and current == "'":
/external/linux-kselftest/tools/testing/selftests/timers/
H A Drtctest_setdate.c33 struct rtc_time new, current; local
74 retval = ioctl(fd, RTC_RD_TIME, &current);
81 current.tm_mday, current.tm_mon + 1, current.tm_year + 1900,
82 current.tm_hour, current.tm_min, current.tm_sec);
/external/llvm/test/MC/AsmParser/
H A Ddot-symbol.s1 # Historically 'as' treats '.' as a reference to the current location in
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/templates/
H A Dtemplate_12-2.in10 signal-catching functions are executed on the current stack if the
24 stack_t current;
38 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) {
57 if (sigaltstack((stack_t *)0, &current) == -1) {
H A Dtemplate_13-1.in10 signal-catching functions are executed on the current stack if the
25 stack_t current;
39 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) {
58 if (sigaltstack((stack_t *)0, &current) == -1) {
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dtimestamp.hpp57 /// Get the current timestamp value.
59 class current { class in namespace:clover::timestamp
61 current(command_queue &q);
/external/swiftshader/third_party/LLVM/test/MC/AsmParser/
H A Ddot-symbol.s1 # Historically 'as' treats '.' as a reference to the current location in
/external/valgrind/none/tests/solaris/
H A Dsigresend.c16 sigset_t current; local
22 assert(!sigprocmask(SIG_BLOCK, NULL, &current));
23 assert(sigismember(&current, SIGUSR1));
28 sigset_t block, current; local
32 if (sigprocmask(0, NULL, &current)) {
36 assert(!sigismember(&current, SIGUSR1));
65 if (sigprocmask(SIG_BLOCK, NULL, &current)) {
69 assert(sigismember(&current, SIGUSR1));
/external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
H A DCommandLineSupport.java81 final StringBuilder current = new StringBuilder();
91 current.append(c);
99 addArgument(args, current);
102 current.append(SLASH);
105 current.append(c);
110 current.setCharAt(current.length() - 1, c);
112 addArgument(args, current);
115 current.append(c);
121 addArgument(args, current);
125 addArgument(final List<String> args, final StringBuilder current) argument
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DUCharacterIteratorWrapper.java42 return (char)iterator.current();
58 * Gets the character at the current position (as returned by getIndex()).
59 * @return the character at the current position or DONE if the current
64 public char current(){ method in class:UCharacterIteratorWrapper
65 return (char) iterator.current();
71 * to getEndIndex(), the current index is reset to getEndIndex() and
80 return (char) iterator.current();
85 * at the new index. If the current index is getBeginIndex(), the index
87 * @return the character at the new position or DONE if the current
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUCharacterIteratorWrapper.java40 return (char)iterator.current();
56 * Gets the character at the current position (as returned by getIndex()).
57 * @return the character at the current position or DONE if the current
62 public char current(){ method in class:UCharacterIteratorWrapper
63 return (char) iterator.current();
69 * to getEndIndex(), the current index is reset to getEndIndex() and
78 return (char) iterator.current();
83 * at the new index. If the current index is getBeginIndex(), the index
85 * @return the character at the new position or DONE if the current
[all...]
/external/skia/bench/
H A DChromeBench.cpp469 SkRect current; local
470 setRectangle(current, i);
472 canvas->drawRect(current, paint);
478 void setRectangle(SkRect& current, int i) { argument
479 current.set(0, 0,
/external/skqp/bench/
H A DChromeBench.cpp469 SkRect current; local
470 setRectangle(current, i);
472 canvas->drawRect(current, paint);
478 void setRectangle(SkRect& current, int i) { argument
479 current.set(0, 0,
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_cs.h49 assert(size <= (cs_copy->current.max_dw - cs_copy->current.cdw)); \
75 cs_copy->current.buf[cs_copy->current.cdw++] = (value); \
99 memcpy(cs_copy->current.buf + cs_copy->current.cdw, (values), (count) * 4); \
100 cs_copy->current.cdw += (count); \
123 memcpy(cs_copy->current.buf + cs_copy->current.cdw, (values), (count) * 4); \
124 cs_copy->current
[all...]
/external/v8/src/
H A Dsplay-tree-inl.h139 Node* current = root_;
140 while (current->right_ != NULL)
141 current = current->right_;
142 locator->bind(current);
151 Node* current = root_;
152 while (current->left_ != NULL)
153 current = current->left_;
154 locator->bind(current);
222 Node* current = root_; local
[all...]
/external/selinux/policycoreutils/setfiles/
H A Drestorecon_xattr.c47 struct dir_xattr *current, *next, **xattr_list = NULL; local
175 current = *xattr_list;
176 while (current) {
177 next = current->next;
178 printf("%s ", current->directory);
180 switch (current->result) {
182 printf("Digest: %s%s", current->digest,
186 printf("Digest: %s%s", current->digest,
190 printf("Deleted Digest: %s%s", current->digest,
195 current
[all...]
/external/opencv/otherlibs/highgui/
H A Dbitstrm.cpp235 uchar *current = m_current; local
238 if( current >= m_end )
241 current = m_current;
244 val = *((uchar*)current);
245 m_current = current + 1;
286 uchar *current = m_current; local
289 if( current+1 < m_end )
291 val = current[0] + (current[1] << 8);
292 m_current = current
305 uchar *current = m_current; local
327 uchar *current = m_current; local
346 uchar *current = m_current; local
401 ulong* current = (ulong*)m_current; local
420 ulong* current = (ulong*)m_current; local
510 ulong* current = ((ulong*)m_current) - mask; local
529 ulong* current = ((ulong*)m_current) - mask; local
859 uchar *current = m_current; local
879 uchar *current = m_current; local
910 uchar *current = m_current; local
930 uchar *current = m_current; local
[all...]
/external/google-breakpad/src/common/dwarf/
H A Ddwarf2diehandler.cc141 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 local
182 HandlerStack &current = die_handlers_.top(); local
192 HandlerStack &current = die_handlers_.top(); local
[all...]
/external/skia/src/pathops/
H A DSkPathOpsSimplify.cpp20 SkOpSegment* current = span->segment(); local
25 if (current->activeWinding(start, end)) {
27 if (!unsortable && current->done()) {
30 SkASSERT(unsortable || !current->done());
33 SkOpSegment* next = current->findNextWinding(&chase, &nextStart, &nextEnd,
39 SkDebugf("%s current id=%d from=(%1.9g,%1.9g) to=(%1.9g,%1.9g)\n", __FUNCTION__,
40 current->debugID(), start->pt().fX, start->pt().fY,
43 if (!current->addCurveTo(start, end, simple)) {
46 current = next;
50 if (current
93 SkOpSegment* current = span->segment(); local
188 SkOpContour* current = contourList; local
[all...]
/external/skqp/src/pathops/
H A DSkPathOpsSimplify.cpp20 SkOpSegment* current = span->segment(); local
25 if (current->activeWinding(start, end)) {
27 if (!unsortable && current->done()) {
30 SkASSERT(unsortable || !current->done());
33 SkOpSegment* next = current->findNextWinding(&chase, &nextStart, &nextEnd,
39 SkDebugf("%s current id=%d from=(%1.9g,%1.9g) to=(%1.9g,%1.9g)\n", __FUNCTION__,
40 current->debugID(), start->pt().fX, start->pt().fY,
43 if (!current->addCurveTo(start, end, simple)) {
46 current = next;
50 if (current
93 SkOpSegment* current = span->segment(); local
188 SkOpContour* current = contourList; local
[all...]

Completed in 2294 milliseconds

1234567891011>>