Home
last modified time | relevance | path

Searched refs:yield (Results 1 - 25 of 58) sorted by relevance

123

/third_party/pcre2/pcre2/src/
H A Dpcre2_match_data.c60 pcre2_match_data *yield; in pcre2_match_data_create() local
63 yield = PRIV(memctl_malloc)( in pcre2_match_data_create()
66 if (yield == NULL) return NULL; in pcre2_match_data_create()
67 yield->oveccount = oveccount; in pcre2_match_data_create()
68 yield->flags = 0; in pcre2_match_data_create()
69 yield->heapframes = NULL; in pcre2_match_data_create()
70 yield->heapframes_size = 0; in pcre2_match_data_create()
71 return yield; in pcre2_match_data_create()
H A Dpcre2_maketables.c78 uint8_t *yield = (uint8_t *)malloc(TABLES_LENGTH); local
84 uint8_t *yield = (uint8_t *)((gcontext != NULL)? local
92 if (yield == NULL) return NULL;
93 p = yield;
149 return yield;
H A Dpcre2_substring.c214 PCRE2_UCHAR *yield; in pcre2_substring_get_bynumber() local
217 yield = PRIV(memctl_malloc)(sizeof(pcre2_memctl) + in pcre2_substring_get_bynumber()
219 if (yield == NULL) return PCRE2_ERROR_NOMEMORY; in pcre2_substring_get_bynumber()
220 yield = (PCRE2_UCHAR *)(((char *)yield) + sizeof(pcre2_memctl)); in pcre2_substring_get_bynumber()
221 memcpy(yield, match_data->subject + match_data->ovector[stringnumber*2], in pcre2_substring_get_bynumber()
223 yield[size] = 0; in pcre2_substring_get_bynumber()
224 *stringptr = yield; in pcre2_substring_get_bynumber()
H A Dpcre2_dftables.c159 int yield = 0; in main() local
165 yield = 1; in main()
169 return yield; in main()
H A Dpcre2_context.c89 void *yield = (memctl == NULL)? malloc(size) : in memctl_malloc() local
91 if (yield == NULL) return NULL; in memctl_malloc()
92 newmemctl = (pcre2_memctl *)yield; in memctl_malloc()
100 return yield; in memctl_malloc()
H A Dpcre2test.c3019 int yield = 0; in pchars8() local
3030 yield += pchar(c, utf, f); in pchars8()
3035 yield += pchar(c, utf, f); in pchars8()
3038 return yield; in pchars8()
3055 int yield = 0; in pchars16() local
3070 yield += pchar(c, utf, f); in pchars16()
3072 return yield; in pchars16()
3090 int yield = 0; in pchars32() local
3096 yield += pchar(c, utf, f); in pchars32()
3098 return yield; in pchars32()
4897 int rc, cmd, cmdlen, yield; process_command() local
6187 int yield = 0; substitute_callout_function() local
8357 int yield = 0; c_option() local
8803 uint32_t yield = 0; main() local
[all...]
H A Dpcre2_printint.c244 const char *yield = "??"; in get_ucpname() local
259 yield = s; in get_ucpname()
265 yield = s; in get_ucpname()
273 return yield; in get_ucpname()
H A Dpcre2_study.c957 int yield = SSB_DONE; in set_start_bits() local
1145 yield = SSB_CONTINUE; in set_start_bits()
1650 return yield; in set_start_bits()
/third_party/ltp/testcases/kernel/sched/clisrv/
H A Dpthserv.c157 yield(); in main()
178 yield(); in new_thread()
/third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
H A DRubyBuilder.java95 block.yield(context, ctx); in addMessage()
124 block.yield(context, ctx); in addEnum()
H A DRubyEnumDescriptor.java134 block.yield(context, runtime.newArray(runtime.newSymbol(enumValueDescriptor.getName()), in each()
/third_party/skia/third_party/externals/spirv-cross/include/spirv_cross/
H A Dbarrier.hpp69 std::this_thread::yield(); in wait()
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/
H A Dkeywords.h56 int yield; variable
/third_party/skia/third_party/externals/swiftshader/src/Common/
H A DThread.hpp59 static void yield();
128 inline void Thread::yield() in yield() function in sw::Thread
H A DMutexLock.hpp144 Thread::yield();
/third_party/skia/experimental/tools/
H A Dgenerate-unicode-test-txt19 # yield i
67 yield i
/third_party/node/deps/v8/src/parsing/
H A Dkeywords-gen.h132 {"yield", Token::YIELD},
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
H A DFence.cpp80 sw::Thread::yield(); in finishFence()
H A DQuery.cpp117 sw::Thread::yield(); in getResult()
/third_party/pcre2/pcre2/maint/
H A Ducptest.c317 const char *yield; in get_propname() local
333 yield = NULL; in get_propname()
343 yield = s; in get_propname()
349 return yield; in get_propname()
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
H A DCoroutine.hpp209 Nucleus::yield(ValueOf(val)); in Yield()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
H A DLLVMContext.h146 /// Defines the type of a yield callback.
255 /// Registers a yield callback with the given context.
257 /// The yield callback function may be called by LLVM to transfer control back
258 /// to the client that invoked the LLVM compilation. This can be used to yield
269 /// yield callback are allowed to be used. Any other API calls into the
270 /// context are not supported until the yield callback function returns
274 /// Calls the yield callback (if applicable).
279 void yield();
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/
H A DLLVMContext.h144 /// Defines the type of a yield callback.
220 /// \brief Registers a yield callback with the given context.
222 /// The yield callback function may be called by LLVM to transfer control back
223 /// to the client that invoked the LLVM compilation. This can be used to yield
234 /// yield callback are allowed to be used. Any other API calls into the
235 /// context are not supported until the yield callback function returns
239 /// \brief Calls the yield callback (if applicable).
244 void yield();
/third_party/nghttp2/
H A Dgit-clang-format329 yield '%s %s\t%s' % (mode, blob_id, filename)
393 yield
/third_party/node/deps/v8/src/wasm/
H A Dwasm-serialization.cc620 bool yield = false; in TryPublishing() local
621 while (!yield) { in TryPublishing()
625 yield = delegate->ShouldYield(); in TryPublishing()
628 if (yield) break; in TryPublishing()

Completed in 20 milliseconds

123