Searched defs:yield (Results 1 - 25 of 33) sorted by relevance

12

/external/pcre/dist2/src/
H A Dpcre2_maketables.c76 uint8_t *yield = (uint8_t *)malloc(tables_length); local
82 uint8_t *yield = (uint8_t *)((gcontext != NULL)? local
90 if (yield == NULL) return NULL;
91 p = yield;
154 return yield;
H A Dpcre2_match_data.c59 pcre2_match_data *yield; local
61 yield = PRIV(memctl_malloc)(
64 if (yield == NULL) return NULL;
65 yield->oveccount = oveccount;
66 return yield;
H A Dpcre2_context.c89 void *yield = (memctl == NULL)? malloc(size) : local
91 if (yield == NULL) return NULL;
92 newmemctl = (pcre2_memctl *)yield;
100 return yield;
H A Dpcre2_study.c877 int yield = SSB_DONE; local
1047 yield = SSB_CONTINUE;
1505 return yield;
H A Dpcre2_substring.c214 PCRE2_UCHAR *yield; local
217 yield = PRIV(memctl_malloc)(sizeof(pcre2_memctl) +
219 if (yield == NULL) return PCRE2_ERROR_NOMEMORY;
220 yield = (PCRE2_UCHAR *)(((char *)yield) + sizeof(pcre2_memctl));
221 memcpy(yield, match_data->subject + match_data->ovector[stringnumber*2],
223 yield[size] = 0;
224 *stringptr = yield;
H A Dpcre2grep.c1122 int yield = 0; local
1125 buffer[yield++] = c;
1126 if (c == '\n' || yield >= length) break;
1128 return yield;
2655 /* Pass back the yield from pcre2grep(). */
H A Dpcre2_compile.c2697 register int yield = 0; local
2698 while (posix_name_lengths[yield] != 0)
2700 if (len == posix_name_lengths[yield] &&
2701 PRIV(strncmp_c8)(ptr, pn, (unsigned int)len) == 0) return yield;
2702 pn += posix_name_lengths[yield] + 1;
2703 yield++;
H A Dpcre2test.c2595 int yield = 0; local
2607 yield += pchar(c, utf, f);
2612 yield += pchar(c, utf, f);
2615 return yield;
2631 int yield = 0; local
2646 yield += pchar(c, utf, f);
2648 return yield;
2665 int yield = 0; local
2671 yield += pchar(c, utf, f);
2673 return yield;
6955 int yield = 0; local
[all...]
/external/libcxx/test/std/experimental/language.support/support.coroutines/end.to.end/
H A Doneshot_func.pass.cpp70 int yield(int x) { yielded_values.push_back(x); return x + 1; } function
73 void Do1(func<int> f) { yield(f()); }
74 void Do2(func<double> f) { yield(static_cast<int>(f())); }
77 Do1([] { return yield(43); });
/external/clang/test/CodeGen/
H A Dbuiltins-arm.c29 void yield() { function
/external/clang/test/SemaCXX/
H A Dcoroutines.cpp82 void yield() { function
90 co_yield yield; // expected-error {{no member named 'await_ready' in 'not_awaitable'}} local
/external/e2fsprogs/lib/ext2fs/
H A Djfs_compat.h54 #define yield() macro
/external/swiftshader/src/Common/
H A DThread.hpp59 static void yield();
128 inline void Thread::yield() function in class:sw::Thread
/external/llvm/lib/IR/
H A DLLVMContext.cpp213 void LLVMContext::yield() { function in class:LLVMContext
/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITCAPITest.cpp68 static void yield(LLVMContextRef, void *) { function
454 TEST_F(MCJITCAPITest, yield) {
461 LLVMContextSetYieldCallback(C, yield, nullptr);
/external/libpcap/
H A Dpcap-dos.c325 (*pd->wait_proc)(); /* call yield func */
354 _w32_os_yield(); /* allow SIGINT generation, yield to Win95/NT */
619 * For pcap_offline_read(): wait and yield between printing packets
622 void pcap_set_wait (pcap_t *p, void (*yield)(void), int wait) argument
628 pd->wait_proc = yield;
/external/v8/src/parsing/
H A Dparser-base.h2885 // 'yield' ([no line terminator] '*'? AssignmentExpression)?
2896 bool delegating = false; // yield*
2910 // a regular yield, given only one look-ahead token.
2927 ExpressionT yield = factory()->NewYield(generator_object, expression, pos, local
2929 return yield;
H A Dparser.cc2498 // in a temporary variable, a definition that is used by "yield"
3122 // The position of the yield is important for reporting the exception
3124 // initial yield (i.e. right after generator instantiation).
3833 // yield do {
3839 // function for the first yield statement; for this, .promise is the
3841 // rejected with the appropriate value by the desugaring. Subsequent yield
3888 // Wrap await to provide a break location between value evaluation and yield.
4168 // Desugaring of yield*
4171 // With the help of do-expressions and function.sent, we desugar yield* into a
4172 // loop containing a "raw" yield (
4449 Yield* yield = factory()->NewYield(generator, output_proxy, nopos, local
[all...]
/external/vixl/src/aarch32/
H A Dassembler-aarch32.cc27832 void Assembler::yield(Condition cond, EncodingSize size) { function in class:vixl::aarch32::Assembler
27855 Delegate(kYield, &Assembler::yield, cond, size);
H A Dassembler-aarch32.h6110 void yield(Condition cond, EncodingSize size);
6111 void yield() { yield(al, Best); } function in class:vixl::aarch32::Assembler
6112 void yield(Condition cond) { yield(cond, Best); } function in class:vixl::aarch32::Assembler
6113 void yield(EncodingSize size) { yield(al, size); } function in class:vixl::aarch32::Assembler
H A Ddisasm-aarch32.cc6988 void Disassembler::yield(Condition cond, EncodingSize size) { function in class:vixl::aarch32::Disassembler
8295 yield(CurrentCond(), Narrow);
9563 yield(CurrentCond(), Wide);
[all...]
/external/kotlinc/lib/
H A Dkotlin-runtime.jarMETA-INF/ META-INF/MANIFEST.MF kotlin/ kotlin/kotlin.kotlin_builtins kotlin/collections/ kotlin/collections/collections ...
H A Dkotlin-stdlib.jarMETA-INF/ META-INF/MANIFEST.MF kotlin/ kotlin/kotlin.kotlin_builtins kotlin/collections/ kotlin/collections/collections ...
/external/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.jdt.core_3.11.0.v20150602-1242.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...

Completed in 2955 milliseconds

12