Home
last modified time | relevance | path

Searched refs:sync (Results 1 – 25 of 1900) sorted by relevance

12345678910>>...76

/third_party/grpc/test/core/security/
Dprint_google_default_creds_token.cc45 synchronizer* sync = static_cast<synchronizer*>(arg); in on_metadata_response() local
51 GPR_ASSERT(sync->md_array.size == 1); in on_metadata_response()
52 token = grpc_slice_to_c_string(GRPC_MDVALUE(sync->md_array.md[0])); in on_metadata_response()
56 gpr_mu_lock(sync->mu); in on_metadata_response()
57 sync->is_done = true; in on_metadata_response()
60 grpc_pollset_kick(grpc_polling_entity_pollset(&sync->pops), nullptr)); in on_metadata_response()
61 gpr_mu_unlock(sync->mu); in on_metadata_response()
67 synchronizer sync; in main() local
90 memset(&sync, 0, sizeof(sync)); in main()
92 grpc_pollset_init(pollset, &sync.mu); in main()
[all …]
Dverify_jwt.cc50 synchronizer* sync = static_cast<synchronizer*>(user_data); in on_jwt_verification_done() local
52 sync->success = (status == GRPC_JWT_VERIFIER_OK); in on_jwt_verification_done()
53 if (sync->success) { in on_jwt_verification_done()
65 gpr_mu_lock(sync->mu); in on_jwt_verification_done()
66 sync->is_done = 1; in on_jwt_verification_done()
67 GRPC_LOG_IF_ERROR("pollset_kick", grpc_pollset_kick(sync->pollset, nullptr)); in on_jwt_verification_done()
68 gpr_mu_unlock(sync->mu); in on_jwt_verification_done()
72 synchronizer sync; in main() local
92 sync.pollset = static_cast<grpc_pollset*>(gpr_zalloc(grpc_pollset_size())); in main()
93 grpc_pollset_init(sync.pollset, &sync.mu); in main()
[all …]
/third_party/boost/libs/thread/test/
DJamfile.v2386 …[ thread-compile-fail ./sync/conditions/condition_variable/assign_fail.cpp : : condition_variable_…
387 …[ thread-compile-fail ./sync/conditions/condition_variable/copy_fail.cpp : : condition_variable__c…
388 …[ thread-run2-noit ./sync/conditions/condition_variable/default_pass.cpp : condition_variable__def…
389 …[ thread-run2-noit ./sync/conditions/condition_variable/dtor_pass.cpp : condition_variable__dtor_p…
390 …[ thread-run2-noit-pthread ./sync/conditions/condition_variable/native_handle_pass.cpp : condition…
391 …[ thread-run2-noit ./sync/conditions/condition_variable/wait_pass.cpp : condition_variable__wait_p…
392 …[ thread-run2-noit ./sync/conditions/condition_variable/wait_for_pass.cpp : condition_variable__wa…
393 …[ thread-run2-noit ./sync/conditions/condition_variable/wait_for_pred_pass.cpp : condition_variabl…
394 …[ thread-run2-noit ./sync/conditions/condition_variable/wait_until_pass.cpp : condition_variable__…
395 …[ thread-run2-noit ./sync/conditions/condition_variable/wait_until_pred_pass.cpp : condition_varia…
[all …]
/third_party/uboot/u-boot-2020.01/cmd/
Dcmd_vo_hi3559av100.c28 extern int start_vo(unsigned int dev, unsigned int type, unsigned int sync);
106 static int check_vo_support(unsigned int dev, unsigned int type, unsigned int sync) in check_vo_support() argument
150 if (sync == VO_OUTPUT_USER) { in check_vo_support()
156 if ((sync < VO_OUTPUT_1080P24) || in check_vo_support()
157 (VO_OUTPUT_1080I50 == sync) || in check_vo_support()
158 (VO_OUTPUT_1080I60 == sync) || in check_vo_support()
159 (VO_OUTPUT_960H_PAL == sync) || in check_vo_support()
160 (VO_OUTPUT_960H_NTSC == sync) || in check_vo_support()
161 ((sync >= VO_OUTPUT_320x240_60) && (sync <= VO_OUTPUT_1080x1920_60)) || in check_vo_support()
162 (sync == VO_OUTPUT_7680x4320_30) || in check_vo_support()
[all …]
Dcmd_vo_hi3569v100.c28 extern int start_vo(unsigned int dev, unsigned int type, unsigned int sync);
106 static int check_vo_support(unsigned int dev, unsigned int type, unsigned int sync) in check_vo_support() argument
150 if (sync == VO_OUTPUT_USER) { in check_vo_support()
156 if ((sync < VO_OUTPUT_1080P24) || in check_vo_support()
157 (VO_OUTPUT_1080I50 == sync) || in check_vo_support()
158 (VO_OUTPUT_1080I60 == sync) || in check_vo_support()
159 (VO_OUTPUT_960H_PAL == sync) || in check_vo_support()
160 (VO_OUTPUT_960H_NTSC == sync) || in check_vo_support()
161 ((sync >= VO_OUTPUT_320x240_60) && (sync <= VO_OUTPUT_1080x1920_60)) || in check_vo_support()
162 (sync == VO_OUTPUT_7680x4320_30) || in check_vo_support()
[all …]
Dcmd_vo_hi3519av100.c28 extern int start_vo(unsigned int dev, unsigned int type, unsigned int sync);
45 static int check_vo_support(unsigned int dev, unsigned int type, unsigned int sync) in check_vo_support() argument
88 if (!(((sync >= VO_OUTPUT_1080P24) && (sync <= VO_OUTPUT_640x480_60)) || in check_vo_support()
89 ((sync >= VO_OUTPUT_1920x2160_30) && (sync <= VO_OUTPUT_4096x2160_60)))) { in check_vo_support()
90 printf("vo%u's intfsync %u illegal!\n", dev, sync); in check_vo_support()
96 if ((sync < VO_OUTPUT_1080P24) || in check_vo_support()
97 (sync > VO_OUTPUT_7680x4320_30)) { in check_vo_support()
98 printf("vo%u's intfsync %u illegal!\n", dev, sync); in check_vo_support()
105 if ((sync != VO_OUTPUT_576P50) && in check_vo_support()
106 (sync != VO_OUTPUT_720P50) && in check_vo_support()
[all …]
Dcmd_vo_hi3516cv500.c28 extern int start_vo(unsigned int dev, unsigned int type, unsigned int sync);
47 static int vo_check_lcd_sync(unsigned int dev, unsigned int type, unsigned int sync) in vo_check_lcd_sync() argument
50 if (VO_OUTPUT_320x240_60 != sync) { in vo_check_lcd_sync()
51 printf("Vo%u's intfsync %u illegal!\n", dev, sync); in vo_check_lcd_sync()
57 if (sync < VO_OUTPUT_320x240_50 || sync > VO_OUTPUT_240x320_50) { in vo_check_lcd_sync()
58 printf("Vo%u's intfsync %u illegal!\n", dev, sync); in vo_check_lcd_sync()
64 if (VO_OUTPUT_240x320_60 != sync) { in vo_check_lcd_sync()
65 printf("Vo%u's intfsync %u illegal!\n", dev, sync); in vo_check_lcd_sync()
71 if (sync != VO_OUTPUT_USER) { in vo_check_lcd_sync()
72 printf("Vo%u's intfsync %u illegal!\n", dev, sync); in vo_check_lcd_sync()
[all …]
Dcmd_vo_hi3516ev200.c28 extern int start_vo(unsigned int dev, unsigned int type, unsigned int sync);
35 static int check_vo_support(unsigned int dev, unsigned int type, unsigned int sync) in check_vo_support() argument
50 if (sync == VO_OUTPUT_USER) { in check_vo_support()
55 if ((((sync < VO_OUTPUT_1080P24) && (sync > VO_OUTPUT_1080I60)) || in check_vo_support()
56 ((sync < VO_OUTPUT_576P50) && (sync > VO_OUTPUT_1024x768_60))) && in check_vo_support()
57 (sync != VO_OUTPUT_640x480_60)) { in check_vo_support()
58 printf("vo%u's intfsync %u illegal!\n", dev, sync); in check_vo_support()
64 if ((sync != VO_OUTPUT_PAL) && (sync != VO_OUTPUT_NTSC)) { in check_vo_support()
65 printf("vo%u's intfsync %u illegal!\n", dev, sync); in check_vo_support()
71 if (VO_OUTPUT_320x240_60 != sync) { in check_vo_support()
[all …]
/third_party/node/deps/npm/node_modules/normalize-package-data/node_modules/resolve/test/
Dresolver_sync.js9 resolve.sync('./foo', { basedir: dir }),
14 resolve.sync('./foo.js', { basedir: dir }),
19 resolve.sync('./foo.js', { basedir: dir, filename: path.join(dir, 'bar.js') }),
24 resolve.sync('foo', { basedir: dir });
30 resolve.sync('foo', { basedir: dir, filename: path.join(dir, 'bar.js') });
45 resolve.sync('foo', { basedir: path.join(dir, 'bar') }),
55 resolve.sync('./baz', { basedir: dir }),
64 resolve.sync('./grux', { basedir: dir }),
69 resolve.sync('tiv', { basedir: path.join(dir, 'grux') }),
74 resolve.sync('grux', { basedir: path.join(dir, 'tiv') }),
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/tests/egl_tests/
DEGLSyncTest.cpp58 EGLSyncKHR sync = eglCreateSyncKHR(display, EGL_SYNC_FENCE_KHR, nullptr); in TEST_P() local
59 EXPECT_NE(sync, EGL_NO_SYNC_KHR); in TEST_P()
61 EXPECT_EGL_TRUE(eglDestroySyncKHR(display, sync)); in TEST_P()
65 sync = eglCreateSyncKHR(display, EGL_SYNC_FENCE_KHR, emptyAttributes); in TEST_P()
66 EXPECT_NE(sync, EGL_NO_SYNC_KHR); in TEST_P()
110 EXPECT_EGL_FALSE(eglGetSyncAttribKHR(display, sync, EGL_CL_EVENT_HANDLE, &attribValue)); in TEST_P()
117 EXPECT_EGL_TRUE(eglDestroySyncKHR(display, sync)); in TEST_P()
137 EGLSyncKHR sync = eglCreateSyncKHR(display, EGL_SYNC_FENCE_KHR, nullptr); in TEST_P() local
138 EXPECT_NE(sync, EGL_NO_SYNC_KHR); in TEST_P()
142 EXPECT_EGL_FALSE(eglWaitSyncKHR(display, sync, 0)); in TEST_P()
[all …]
/third_party/weston/tests/
Dlinux-explicit-synchronization-test.c57 struct zwp_linux_explicit_synchronization_v1 *sync = NULL; in get_linux_explicit_synchronization() local
73 sync = wl_registry_bind( in get_linux_explicit_synchronization()
76 assert(sync); in get_linux_explicit_synchronization()
78 return sync; in get_linux_explicit_synchronization()
92 struct zwp_linux_explicit_synchronization_v1 *sync = in TEST() local
99 sync, client->surface->wl_surface); in TEST()
105 sync, client->surface->wl_surface); in TEST()
113 zwp_linux_explicit_synchronization_v1_destroy(sync); in TEST()
119 struct zwp_linux_explicit_synchronization_v1 *sync = in TEST() local
123 sync, client->surface->wl_surface); in TEST()
[all …]
/third_party/openGLES/extensions/APPLE/
DAPPLE_sync.txt41 This extension introduces the concept of "sync objects". Sync
44 type of sync object, the "fence sync object", is supported in this
47 Fence sync objects have corresponding fences, which are inserted
48 into the OpenGL command stream at the time the sync object is
49 created. A sync object can be queried for a given condition. The
50 only condition supported for fence sync objects is completion of the
74 sync FenceSyncAPPLE(enum condition, bitfield flags);
75 boolean IsSyncAPPLE(sync sync);
76 void DeleteSyncAPPLE(sync sync);
78 enum ClientWaitSyncAPPLE(sync sync, bitfield flags, uint64 timeout);
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/APPLE/
DAPPLE_sync.txt41 This extension introduces the concept of "sync objects". Sync
44 type of sync object, the "fence sync object", is supported in this
47 Fence sync objects have corresponding fences, which are inserted
48 into the OpenGL command stream at the time the sync object is
49 created. A sync object can be queried for a given condition. The
50 only condition supported for fence sync objects is completion of the
74 sync FenceSyncAPPLE(enum condition, bitfield flags);
75 boolean IsSyncAPPLE(sync sync);
76 void DeleteSyncAPPLE(sync sync);
78 enum ClientWaitSyncAPPLE(sync sync, bitfield flags, uint64 timeout);
[all …]
/third_party/EGL/extensions/EXT/
DEGL_EXT_sync_reuse.txt48 The original EGLSync extensions separated sync objects into two
49 types: fence sync objects signaled by one time events in an
50 API command pipeline; and reusable sync objects signaled by commands
52 reusability of the event triggering a sync object with the EGLSync
55 Although the event associated with a fence sync object will only
62 This extension allows all sync objects to be reusable. When a sync
65 trigger them. For fence sync objects, this means generating a new
66 fence in the current API. For OpenCL event sync objects, this means
68 sync objects to be created in the signaled state with no associated
85 EGLSync sync,
[all …]
/third_party/skia/third_party/externals/egl-registry/extensions/EXT/
DEGL_EXT_sync_reuse.txt48 The original EGLSync extensions separated sync objects into two
49 types: fence sync objects signaled by one time events in an
50 API command pipeline; and reusable sync objects signaled by commands
52 reusability of the event triggering a sync object with the EGLSync
55 Although the event associated with a fence sync object will only
62 This extension allows all sync objects to be reusable. When a sync
65 trigger them. For fence sync objects, this means generating a new
66 fence in the current API. For OpenCL event sync objects, this means
68 sync objects to be created in the signaled state with no associated
85 EGLSync sync,
[all …]
/third_party/ffmpeg/tests/ref/fate/
Dmovenc3 write_data len 788, time 1000000, type sync atom moof
8 write_data len 908, time 966667, type sync atom moof
13 write_data len 908, time 1000000, type sync atom moof
18 write_data len 728, time 0, type sync atom moof
20 write_data len 728, time 999999, type sync atom moof
26 write_data len 796, time 0, type sync atom moof
27 write_data len 788, time 1000000, type sync atom moof
32 write_data len 1068, time 0, type sync atom moof
33 write_data len 908, time 1000000, type sync atom moof
38 write_data len 900, time -33333, type sync atom moof
[all …]
/third_party/skia/third_party/externals/egl-registry/extensions/NV/
DEGL_NV_sync.txt42 This extension introduces the concept of "sync objects" into EGL.
46 extension, introduces only a single type of sync object, the
47 "fence sync object." Additional types of sync objects may be
50 Fence sync objects have corresponding fences, which are inserted
51 into client API command streams. A sync object can be queried
65 * EGLSyncNV is an opaque handle to an EGL sync object
84 EGLBoolean eglDestroySyncNV( EGLSyncNV sync );
86 EGLBoolean eglFenceNV( EGLSyncNV sync );
88 EGLint eglClientWaitSyncNV( EGLSyncNV sync,
91 EGLBoolean eglSignalSyncNV( EGLSyncNV sync, EGLenum mode );
[all …]
/third_party/EGL/extensions/NV/
DEGL_NV_sync.txt42 This extension introduces the concept of "sync objects" into EGL.
46 extension, introduces only a single type of sync object, the
47 "fence sync object." Additional types of sync objects may be
50 Fence sync objects have corresponding fences, which are inserted
51 into client API command streams. A sync object can be queried
65 * EGLSyncNV is an opaque handle to an EGL sync object
84 EGLBoolean eglDestroySyncNV( EGLSyncNV sync );
86 EGLBoolean eglFenceNV( EGLSyncNV sync );
88 EGLint eglClientWaitSyncNV( EGLSyncNV sync,
91 EGLBoolean eglSignalSyncNV( EGLSyncNV sync, EGLenum mode );
[all …]
/third_party/EGL/extensions/KHR/
DEGL_KHR_reusable_sync.txt52 This extension introduces the concept of "sync objects" into EGL.
55 borrows from the GL_ARB_sync extension but introduces a type of sync
56 object known as "reusable sync object" comparable to an OS
58 sync objects to be easily introduced in later extensions.
60 Reusable sync objects may be used to synchronize activity between
68 * EGLSyncKHR is an opaque handle to an EGL sync object
89 EGLSyncKHR sync);
93 EGLSyncKHR sync,
99 EGLSyncKHR sync,
104 EGLSyncKHR sync,
[all …]
DEGL_KHR_fence_sync.txt54 This extension introduces the concept of "sync objects" into EGL.
58 of sync object known as a "fence sync object" comparable to the
59 OpenGL fence sync object. The specification is designed to allow
60 additional types of sync objects to be easily introduced in later
63 Fence sync objects have corresponding fence commands, which are
64 inserted into a client API command stream at the time the fence sync
65 is created. A fence sync object is used to wait for completion of
77 "GL_OES_EGL_sync" string indicates that a fence sync object can be
85 * EGLSyncKHR is an opaque handle to an EGL sync object
106 EGLSyncKHR sync);
[all …]
/third_party/skia/third_party/externals/egl-registry/extensions/KHR/
DEGL_KHR_reusable_sync.txt52 This extension introduces the concept of "sync objects" into EGL.
55 borrows from the GL_ARB_sync extension but introduces a type of sync
56 object known as "reusable sync object" comparable to an OS
58 sync objects to be easily introduced in later extensions.
60 Reusable sync objects may be used to synchronize activity between
68 * EGLSyncKHR is an opaque handle to an EGL sync object
89 EGLSyncKHR sync);
93 EGLSyncKHR sync,
99 EGLSyncKHR sync,
104 EGLSyncKHR sync,
[all …]
DEGL_KHR_fence_sync.txt54 This extension introduces the concept of "sync objects" into EGL.
58 of sync object known as a "fence sync object" comparable to the
59 OpenGL fence sync object. The specification is designed to allow
60 additional types of sync objects to be easily introduced in later
63 Fence sync objects have corresponding fence commands, which are
64 inserted into a client API command stream at the time the fence sync
65 is created. A fence sync object is used to wait for completion of
77 "GL_OES_EGL_sync" string indicates that a fence sync object can be
85 * EGLSyncKHR is an opaque handle to an EGL sync object
106 EGLSyncKHR sync);
[all …]
/third_party/openGLES/extensions/ARB/
DARB_sync.txt67 This extension introduces the concept of "sync objects". Sync
70 type of sync object, the "fence sync object", is supported in this
73 Fence sync objects have corresponding fences, which are inserted
74 into the OpenGL command stream at the time the sync object is
75 created. A sync object can be queried for a given condition. The
76 only condition supported for fence sync objects is completion of the
100 sync FenceSync(enum condition,bitfield flags)
101 boolean IsSync(sync sync)
102 void DeleteSync(sync sync)
104 enum ClientWaitSync(sync sync,bitfield flags,uint64 timeout)
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/
DARB_sync.txt57 This extension introduces the concept of "sync objects". Sync
60 type of sync object, the "fence sync object", is supported in this
63 Fence sync objects have corresponding fences, which are inserted
64 into the OpenGL command stream at the time the sync object is
65 created. A sync object can be queried for a given condition. The
66 only condition supported for fence sync objects is completion of the
90 sync FenceSync(enum condition,bitfield flags)
91 boolean IsSync(sync sync)
92 void DeleteSync(sync sync)
94 enum ClientWaitSync(sync sync,bitfield flags,uint64 timeout)
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/OES/
DEGL_KHR_fence_sync.txt54 This extension introduces the concept of "sync objects" into EGL.
58 of sync object known as a "fence sync object" comparable to the
59 OpenGL fence sync object. The specification is designed to allow
60 additional types of sync objects to be easily introduced in later
63 Fence sync objects have corresponding fence commands, which are
64 inserted into a client API command stream at the time the fence sync
65 is created. A fence sync object is used to wait for completion of
77 "GL_OES_EGL_sync" string indicates that a fence sync object can be
85 * EGLSyncKHR is an opaque handle to an EGL sync object
106 EGLSyncKHR sync);
[all …]

12345678910>>...76