/third_party/rust/crates/rust-openssl/openssl/src/ssl/ |
H A D | mod.rs | 31 //! use std::sync::Arc; 86 use once_cell::sync::{Lazy, OnceCell}; 103 use std::sync::{Arc, Mutex}; 4154 use std::sync::Once;
|
/third_party/mesa3d/src/amd/compiler/ |
H A D | aco_spill.cpp | 1514 instr->mubuf().sync = memory_sync_info(storage_vgpr_spill, semantic_private); in spill_vgpr() 1523 instr->mubuf().sync = memory_sync_info(storage_vgpr_spill, semantic_private); in spill_vgpr() 1555 instr->mubuf().sync = memory_sync_info(storage_vgpr_spill, semantic_private); in reload_vgpr() 1565 instr->mubuf().sync = memory_sync_info(storage_vgpr_spill, semantic_private); in reload_vgpr()
|
/third_party/ntfs-3g/ntfsprogs/ |
H A D | ntfsresize.c | 1876 // if (v->dev->d_ops->sync(v->dev) == -1) in write_mft_record() 1877 // perr_exit("Failed to sync device"); in write_mft_record() 2222 // if (vol->dev->d_ops->sync(vol->dev) == -1) in relocate_inode() 2223 // perr_exit("Failed to sync device"); in relocate_inode() 2711 /* If successful, update cache and sync $Bitmap */ in truncate_bitmap_file() 2996 if (vol->dev->d_ops->sync(vol->dev) == -1) in prepare_volume_fixup() 2997 perr_exit("Failed to sync device"); in prepare_volume_fixup() 3001 if (vol->dev->d_ops->sync(vol->dev) == -1) in prepare_volume_fixup() 3002 perr_exit("Failed to sync device"); in prepare_volume_fixup() 4450 if (dev->d_ops->sync(de in really_expand() [all...] |
/third_party/alsa-lib/include/sound/uapi/ |
H A D | asound.h | 286 #define SNDRV_PCM_INFO_SYNC_APPLPTR 0x00000020 /* need the explicit sync of appl_ptr update */ 297 #define SNDRV_PCM_INFO_SYNC_START 0x00400000 /* pcm support some kind of sync go */ 299 #define SNDRV_PCM_INFO_HAS_WALL_CLOCK 0x01000000 /* (Deprecated)has audio wall clock for audio/system time sync */ 357 union snd_pcm_sync_id sync; /* hardware synchronization ID */ member 493 struct timespec audio_tstamp; /* sample counter, wall clock, PHC or on-demand sync'ed */
|
/third_party/ltp/ |
H A D | runltp | 136 [NUM_PROCS = no. of processes creating IO Bus Load by spinning over sync()]
|
/third_party/node/lib/internal/fs/ |
H A D | promises.js | 164 sync() {
|
/third_party/ltp/testcases/kernel/mce-test/stress/ |
H A D | hwpoison.sh | 881 log "now to sync up the disk under testing, might need several minutes ..." 882 sync
|
/third_party/mesa3d/src/panfrost/vulkan/ |
H A D | panvk_private.h | 247 uint32_t sync;
|
/third_party/vk-gl-cts/external/vulkan-docs/src/ |
H A D | Makefile | 274 SYNCPATH = $(GENERATED)/sync 652 # hostsyncinc / proxy $(HOSTSYNCDEPEND) - host sync table include files in $(HOSTSYNCPATH)
|
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/ |
H A D | langsvr.go | 28 "sync" 100 filesMutex sync.Mutex
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/ |
H A D | langsvr.go | 28 "sync" 100 filesMutex sync.Mutex
|
/third_party/spirv-tools/utils/vscode/src/ |
H A D | langsvr.go | 28 "sync" 100 filesMutex sync.Mutex
|
/third_party/node/deps/v8/src/compiler/backend/ppc/ |
H A D | code-generator-ppc.cc | 522 if (is_atomic) __ sync(); \ 539 if (is_atomic) __ sync(); \ 553 if (is_atomic) __ sync(); \ 1025 // Need to re-sync SP delta introduced in kArchSaveCallerRegisters. in AssembleArchInstruction() 1183 __ sync(); in AssembleArchInstruction() 2035 if (is_atomic) __ sync(); in AssembleArchInstruction()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | Context.cpp | 619 // We sync the draw Framebuffer manually in prepareForClear to allow the clear calls to do in initializeDefaultResources() 992 void Context::deleteSync(GLsync sync) in deleteSync() argument 998 mState.mSyncManager->deleteObject(this, static_cast<GLuint>(reinterpret_cast<uintptr_t>(sync))); in deleteSync() 4147 // Only sync the FBO that's being invalidated. Per the GLES3 spec, GL_FRAMEBUFFER is equivalent in prepareForInvalidate() 6314 void Context::getSynciv(GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values) in getSynciv() argument 6319 syncObject = getSync(sync); in getSynciv() 7811 GLboolean Context::isSync(GLsync sync) const in isSync() 7813 return (getSync(sync) != nullptr); in isSync() 7816 GLenum Context::clientWaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout) in clientWaitSync() argument 7818 Sync *syncObject = getSync(sync); in clientWaitSync() 7828 waitSync(GLsync sync, GLbitfield flags, GLuint64 timeout) waitSync() argument [all...] |
/third_party/mesa3d/include/CL/ |
H A D | cl_icd.h | 785 cl_context context, cl_GLsync sync, cl_int *errcode_ret); 1055 cl_context context, CLeglSyncKHR sync, CLeglDisplayKHR display,
|
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-test.cc | 494 Handle<String> sync = Handle<String>::cast(sync_object); in RUNTIME_FUNCTION() 495 if (sync->IsOneByteEqualTo( in RUNTIME_FUNCTION()
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/common/ |
H A D | Image.cpp | 977 sync(); // Wait for any threads that use this image to finish. 1162 sync(); // Wait for any threads that use this image to finish. 1252 // sync() must be called in the destructor of the most derived class to ensure their vtable isn't destroyed in ~Image()
|
/third_party/rust/crates/termcolor/src/ |
H A D | lib.rs | 124 use std::sync::atomic::{AtomicBool, Ordering}; 126 use std::sync::{Mutex, MutexGuard};
|
/third_party/node/src/ |
H A D | node_file.cc | 157 #define TRACE_NAME(name) "fs.sync." #name 160 TRACING_CATEGORY_NODE2(fs, sync)) != 0) 164 TRACING_CATEGORY_NODE2(fs, sync), TRACE_NAME(syscall), ##__VA_ARGS__); 168 TRACING_CATEGORY_NODE2(fs, sync), TRACE_NAME(syscall), ##__VA_ARGS__);
|
/third_party/ffmpeg/libavutil/x86/ |
H A D | x86inc.asm | 86 ; NOTE: This section is out of sync with x264, in order to 899 ; (All 4 remain in sync through SWAP.)
|
/third_party/vk-gl-cts/modules/egl/ |
H A D | teglSyncTests.cpp | 1496 EGLSync sync, const string &syncName, in test() 1506 EGLint status = (egl.*clientWaitSyncFunc)(m_eglDisplay, sync, 0, eglTime); in test() 1494 test(string funcNames[FUNC_NAME_NUM_NAMES], clientWaitSyncFuncType clientWaitSyncFunc, EGLSync sync, const string &syncName, EGLTime eglTime, const string &eglTimeName) test() argument
|
/third_party/icu/icu4c/source/data/ |
H A D | makedata.mak | 14 # Keep the following in sync with the version - see common/unicode/uvernum.h
|
/third_party/mesa3d/src/imagination/vulkan/ |
H A D | pvr_job_context.c | 744 state.sync = true; in pvr_rogue_get_geom_state_stream_out_words()
|
/third_party/ntfs-3g/libntfs-3g/ |
H A D | volume.c | 207 if (dev->d_ops->sync(dev)) in __ntfs_volume_release()
|
/third_party/node/deps/v8/src/diagnostics/mips64/ |
H A D | disasm-mips64.cc | 1636 Format(instr, "sync"); in DecodeTypeRegisterSPECIAL()
|