Home
last modified time | relevance | path

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

123

/third_party/skia/third_party/externals/freetype/src/gxvalid/
H A Dgxvfeat.c84 FT_Bool exclusive, in gxv_feat_registry_validate()
124 if ( exclusive != gxv_feat_registry[feature].exclusive ) in gxv_feat_registry_validate()
126 GXV_TRACE(( "exclusive flag %d differs from predefined value\n", in gxv_feat_registry_validate()
127 exclusive )); in gxv_feat_registry_validate()
165 FT_Bool exclusive, in gxv_feat_setting_validate()
178 /* If we have exclusive setting, the setting should be odd. */ in gxv_feat_setting_validate()
179 if ( exclusive && ( setting & 1 ) == 0 ) in gxv_feat_setting_validate()
203 FT_Bool exclusive; in gxv_feat_name_validate() local
226 exclusive in gxv_feat_name_validate()
82 gxv_feat_registry_validate( FT_UShort feature, FT_UShort nSettings, FT_Bool exclusive, GXV_Validator gxvalid ) gxv_feat_registry_validate() argument
163 gxv_feat_setting_validate( FT_Bytes table, FT_Bytes limit, FT_Bool exclusive, GXV_Validator gxvalid ) gxv_feat_setting_validate() argument
[all...]
H A Dgxvfgen.c91 char exclusive; member
472 featreg_table[i].exclusive ? 1 : 0, in main()
H A Dgxvfeat.h49 FT_Bool exclusive; member
/third_party/nghttp2/lib/
H A Dnghttp2_priority_spec.c29 int exclusive) { in nghttp2_priority_spec_init()
32 pri_spec->exclusive = exclusive != 0; in nghttp2_priority_spec_init()
38 pri_spec->exclusive = 0; in nghttp2_priority_spec_default_init()
43 pri_spec->weight == NGHTTP2_DEFAULT_WEIGHT && pri_spec->exclusive == 0; in nghttp2_priority_spec_check_default()
27 nghttp2_priority_spec_init(nghttp2_priority_spec *pri_spec, int32_t stream_id, int32_t weight, int exclusive) nghttp2_priority_spec_init() argument
/third_party/node/deps/nghttp2/lib/
H A Dnghttp2_priority_spec.c29 int exclusive) { in nghttp2_priority_spec_init()
32 pri_spec->exclusive = exclusive != 0; in nghttp2_priority_spec_init()
38 pri_spec->exclusive = 0; in nghttp2_priority_spec_default_init()
43 pri_spec->weight == NGHTTP2_DEFAULT_WEIGHT && pri_spec->exclusive == 0; in nghttp2_priority_spec_check_default()
27 nghttp2_priority_spec_init(nghttp2_priority_spec *pri_spec, int32_t stream_id, int32_t weight, int exclusive) nghttp2_priority_spec_init() argument
/third_party/node/test/parallel/
H A Dtest-http2-priority-event.js14 function onPriority(stream, parent, weight, exclusive) {
18 assert.strictEqual(exclusive, false);
25 exclusive: false
47 exclusive: false
H A Dtest-http2-client-request-options-errors.js17 exclusive: 'boolean',
/third_party/node/deps/openssl/openssl/crypto/
H A Dthreads_win.c36 int exclusive; member
89 rwlock->exclusive = 1; in CRYPTO_THREAD_write_lock()
101 if (rwlock->exclusive) { in CRYPTO_THREAD_unlock()
102 rwlock->exclusive = 0; in CRYPTO_THREAD_unlock()
/third_party/openssl/crypto/
H A Dthreads_win.c36 int exclusive; member
89 rwlock->exclusive = 1; in CRYPTO_THREAD_write_lock()
101 if (rwlock->exclusive) { in CRYPTO_THREAD_unlock()
102 rwlock->exclusive = 0; in CRYPTO_THREAD_unlock()
/third_party/curl/lib/
H A Dsocketpair.c92 int exclusive = 1; in Curl_socketpair() local
94 (char *)&exclusive, (curl_socklen_t)sizeof(exclusive)) == -1) in Curl_socketpair()
H A Durl.h76 bool exclusive);
/third_party/node/test/sequential/
H A Dtest-dgram-bind-shared-ports.js25 // This test asserts the semantics of dgram::socket.bind({ exclusive })
100 const opt1 = { address, port: 0, exclusive: false };
101 const opt2 = { address, port: common.PORT, exclusive: false };
102 const opt3 = { address, port: common.PORT + 1, exclusive: true };
/third_party/node/lib/
H A Ddgram.js276 const exclusive = !!port.exclusive;
281 if (cluster.isWorker && !exclusive) {
310 let exclusive;
314 exclusive = !!port.exclusive;
318 exclusive = false;
345 if (cluster.isWorker && !exclusive) {
396 this.bind({ port: 0, exclusive: true }, null);
650 this.bind({ port: 0, exclusive
[all...]
H A Dnet.js1856 backlog, fd, exclusive, flags, options) {
1857 exclusive = !!exclusive;
1861 if (cluster.isPrimary || exclusive) {
1950 options.exclusive, flags);
1954 backlog, undefined, options.exclusive);
1970 options.exclusive,
2007 function lookupAndListen(self, port, address, backlog, exclusive, flags) {
2015 backlog, undefined, exclusive, flags);
/third_party/rust/crates/clap/tests/builder/
H A Dconflicts.rs42 .arg(arg!(-f --flag "some flag").exclusive(true)) in exclusive_flag()
56 .arg(arg!(-f --flag <VALUE> "some flag").exclusive(true)) in exclusive_option()
67 .arg(arg!(-f --flag <VALUE> "some flag").exclusive(true)) in not_exclusive_with_defaults()
84 .exclusive(true) in not_exclusive_with_group()
96 .exclusive(true) in default_doesnt_activate_exclusive()
672 .exclusive(true), in exclusive_with_required()
/third_party/alsa-utils/seq/aconnect/
H A Daconnect.c63 printf(_(" -e,--exclusive exclusive connection\n")); in usage()
313 {"exclusive", 0, NULL, 'e'},
326 int queue = 0, convert_time = 0, convert_real = 0, exclusive = 0; in main() local
353 exclusive = 1; in main()
439 snd_seq_port_subscribe_set_exclusive(subs, exclusive); in main()
/third_party/mesa3d/src/virtio/vulkan/
H A Dvn_feedback.c43 const bool exclusive = dev->queue_family_count == 1; in vn_feedback_buffer_create() local
63 exclusive ? VK_SHARING_MODE_EXCLUSIVE : VK_SHARING_MODE_CONCURRENT, in vn_feedback_buffer_create()
65 .queueFamilyIndexCount = exclusive ? 0 : dev->queue_family_count, in vn_feedback_buffer_create()
66 .pQueueFamilyIndices = exclusive ? NULL : dev->queue_families, in vn_feedback_buffer_create()
/third_party/rust/crates/clap/examples/
H A Dmulticall-busybox.rs25 .exclusive(true) in main()
/third_party/alsa-lib/src/timer/
H A Dtimer.c635 * \brief set timer exclusive use
637 * \param exclusive The boolean value to set
640 EXPORT_SYMBOL int INTERNAL(snd_timer_params_set_exclusive)(snd_timer_params_t * params, int exclusive) in snd_timer_params_set_exclusive() argument
642 int snd_timer_params_set_exclusive(snd_timer_params_t * params, int exclusive) in snd_timer_params_set_exclusive()
646 if (exclusive) in snd_timer_params_set_exclusive()
655 * \brief determine if timer has exclusive flag
657 * \return nonzero if timer has exclusive flag
H A Dtimer_local.h78 int INTERNAL(snd_timer_params_set_exclusive)(snd_timer_params_t * params, int exclusive);
/third_party/mesa3d/src/freedreno/ir3/
H A Dir3_lower_subgroups.c264 * exclusive = reduce; in lower_instr()
265 * inclusive = src OP exclusive; in lower_instr()
295 struct ir3_register *exclusive = instr->dsts[0]; in lower_instr() local
300 mov_reg(exit, exclusive, reduce); in lower_instr()
301 do_reduce(exit, instr->cat1.reduce_op, inclusive, src, exclusive); in lower_instr()
/third_party/node/deps/v8/third_party/zlib/
H A Dgzlib.c103 int exclusive = 0; local
151 exclusive = 1;
234 (exclusive ? O_EXCL : 0) |
/third_party/node/deps/zlib/
H A Dgzlib.c96 int exclusive = 0; in gz_open() local
144 exclusive = 1; in gz_open()
227 (exclusive ? O_EXCL : 0) | in gz_open()
/third_party/skia/third_party/externals/zlib/
H A Dgzlib.c103 int exclusive = 0; local
151 exclusive = 1;
234 (exclusive ? O_EXCL : 0) |
/third_party/zlib/
H A Dgzlib.c97 int exclusive = 0; in gz_open() local
145 exclusive = 1; in gz_open()
228 (exclusive ? O_EXCL : 0) | in gz_open()

Completed in 18 milliseconds

123