/third_party/pcre2/pcre2/src/ |
H A D | pcre2_match_data.c | 60 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 D | pcre2_maketables.c | 78 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 D | pcre2_substring.c | 214 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 D | pcre2_dftables.c | 159 int yield = 0; in main() local 165 yield = 1; in main() 169 return yield; in main()
|
H A D | pcre2_context.c | 89 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 D | pcre2test.c | 3019 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 D | pcre2_printint.c | 244 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 D | pcre2_study.c | 957 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 D | pthserv.c | 157 yield(); in main() 178 yield(); in new_thread()
|
/third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/ |
H A D | RubyBuilder.java | 95 block.yield(context, ctx); in addMessage() 124 block.yield(context, ctx); in addEnum()
|
H A D | RubyEnumDescriptor.java | 134 block.yield(context, runtime.newArray(runtime.newSymbol(enumValueDescriptor.getName()), in each()
|
/third_party/skia/third_party/externals/spirv-cross/include/spirv_cross/ |
H A D | barrier.hpp | 69 std::this_thread::yield(); in wait()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/ |
H A D | keywords.h | 56 int yield; variable
|
/third_party/skia/third_party/externals/swiftshader/src/Common/ |
H A D | Thread.hpp | 59 static void yield(); 128 inline void Thread::yield() in yield() function in sw::Thread
|
H A D | MutexLock.hpp | 144 Thread::yield();
|
/third_party/skia/experimental/tools/ |
H A D | generate-unicode-test-txt | 19 # yield i 67 yield i
|
/third_party/node/deps/v8/src/parsing/ |
H A D | keywords-gen.h | 132 {"yield", Token::YIELD},
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/ |
H A D | Fence.cpp | 80 sw::Thread::yield(); in finishFence()
|
H A D | Query.cpp | 117 sw::Thread::yield(); in getResult()
|
/third_party/pcre2/pcre2/maint/ |
H A D | ucptest.c | 317 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 D | Coroutine.hpp | 209 Nucleus::yield(ValueOf(val)); in Yield()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
H A D | LLVMContext.h | 146 /// 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 D | LLVMContext.h | 144 /// 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 D | git-clang-format | 329 yield '%s %s\t%s' % (mode, blob_id, filename) 393 yield
|
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-serialization.cc | 620 bool yield = false; in TryPublishing() local 621 while (!yield) { in TryPublishing() 625 yield = delegate->ShouldYield(); in TryPublishing() 628 if (yield) break; in TryPublishing()
|