/third_party/curl/tests/libtest/ |
H A D | lib1560.c | 94 const char *set; member 103 const char *set; member 107 CURLUcode ucode; /* for the main URL set */ 113 const char *set; member 835 0, /* set */ 841 0, /* set */ 847 0, /* set */ 853 0, /* set */ 860 0, /* set */ 867 CURLU_URLENCODE, /* encode on set */ [all...] |
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_bad_pixels.cpp | 1066 for (uint32 set = 0; set < kNumSets; set++) in FixClusteredPixel() 1069 if (!isGreen && (kOffset [set] [0] [0] & 1) == 1) in FixClusteredPixel() 1080 dng_point offset (kOffset [set] [entry] [0], in FixClusteredPixel() 1081 kOffset [set] [entry] [1]); in FixClusteredPixel() 1645 for (uint32 set = 0; set < kNumSets && !didFixPixel; set++) in FixClusteredRect() 1648 if (!isGreen && (kOffset [set] [ in FixClusteredRect() [all...] |
/third_party/rust/crates/libc/src/unix/redox/ |
H A D | mod.rs | 918 pub fn FD_CLR(fd: ::c_int, set: *mut fd_set) -> () { in FD_CLR() 920 let size = ::mem::size_of_val(&(*set).fds_bits[0]) * 8; in FD_CLR() 921 (*set).fds_bits[fd / size] &= !(1 << (fd % size)); in FD_CLR() 925 pub fn FD_ISSET(fd: ::c_int, set: *const fd_set) -> bool { in FD_ISSET() 927 let size = ::mem::size_of_val(&(*set).fds_bits[0]) * 8; in FD_ISSET() 928 return ((*set).fds_bits[fd / size] & (1 << (fd % size))) != 0 in FD_ISSET() 931 pub fn FD_SET(fd: ::c_int, set: *mut fd_set) -> () { in FD_SET() 933 let size = ::mem::size_of_val(&(*set).fds_bits[0]) * 8; in FD_SET() 934 (*set).fds_bits[fd / size] |= 1 << (fd % size); in FD_SET() 938 pub fn FD_ZERO(set [all...] |
/third_party/skia/modules/canvaskit/ |
H A D | interface.js | 6 // Anything that modifies an exposed class (e.g. Path) should be set 244 optionalOutputArray.set(ta); 269 optionalOutputArray.set(ta); 749 optOutputRect.set(ta); 863 optionalOutput.set(ta); 915 // We cannot call optionalOutput.set() because it is an error to call .set() with 1012 startEndPts.set(start); 1013 startEndPts.set(end, 2); 1068 startEndPts.set(star [all...] |
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fShaderAtomicOpTests.cpp | 40 #include <set> 53 using std::set; 286 set<int> outValues; in verify() 393 static bool containsAfterUintCast (const std::set<deInt32>& haystack, deUint32 needle, glu::Precision precision) 395 for (std::set<deInt32>::const_iterator it = haystack.begin(); it != haystack.end(); ++it) 401 static bool containsAfterUintCast (const std::set<deUint32>& haystack, deInt32 needle, glu::Precision precision) 403 for (std::set<deUint32>::const_iterator it = haystack.begin(); it != haystack.end(); ++it) 440 set<deInt32> inValues; 441 set<deUint32> outValues; 522 set<in [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/ |
H A D | VertexArrayGL.cpp | 138 mElementArrayBuffer.set(context, nullptr); in destroy() 141 binding.set(context, nullptr); in destroy() 178 mElementArrayBuffer.set(context, elementArrayBuffer); in updateElementArrayBufferBinding() 211 // Not an indexed call, set the range to [first, first + count - 1] in syncDrawState() 225 updatedStreamingAttribsMask.set(attribIndex); in syncDrawState() 226 mForcedStreamingAttributesForDrawArraysInstancedMask.set(attribIndex); in syncDrawState() 314 mElementArrayBuffer.set(context, nullptr); in syncIndexData() 542 mArrayBuffers[idx].set(context, nullptr); in streamAttributes() 602 mArrayBuffers[idx].set(context, binding.getBuffer().get()); in recoverForcedStreamingAttributesForDrawArraysInstanced() 668 mArrayBuffers[attribIndex].set(contex in updateAttribPointer() [all...] |
/kernel/linux/linux-5.10/drivers/block/null_blk/ |
H A D | main.c | 140 .set = null_set_queue_mode, 165 MODULE_PARM_DESC(shared_tags, "Share tag set between devices for blk-mq"); 180 .set = null_set_irqmode, 327 struct blk_mq_tag_set *set; in nullb_apply_submit_queues() local 338 set = nullb->tag_set; in nullb_apply_submit_queues() 339 blk_mq_update_nr_hw_queues(set, submit_queues); in nullb_apply_submit_queues() 340 return set->nr_hw_queues == submit_queues ? 0 : -ENOMEM; in nullb_apply_submit_queues() 1717 static int null_init_tag_set(struct nullb *nullb, struct blk_mq_tag_set *set) in null_init_tag_set() argument 1719 set->ops = &null_mq_ops; in null_init_tag_set() 1720 set in null_init_tag_set() [all...] |
/kernel/linux/linux-5.10/arch/s390/kernel/ |
H A D | entry.S | 376 stg %r14,__SF_SIE_REASON(%r15) # set exit reason code 494 # _TIF_NEED_RESCHED is set, call schedule 501 # _CIF_ASCE_PRIMARY and/or _CIF_ASCE_SECONDARY set, load user space asce 521 # _TIF_SIGPENDING is set, call do_signal 535 # _TIF_NOTIFY_RESUME is set, call do_notify_resume 543 # _TIF_UPROBE is set, call uprobe_notify_resume 553 # _TIF_GUARDED_STORAGE is set, call guarded_storage_load 560 # _TIF_PATCH_PENDING is set, call klp_update_patch_state 570 # _PIF_PER_TRAP is set, call do_per_trap 579 # _PIF_SYSCALL_RESTART is set, repea [all...] |
/kernel/linux/linux-5.10/arch/arm64/kernel/ |
H A D | ptrace.c | 824 /* Actual VL set may be less than the user asked for: */ in sve_set() 842 * try to set the registers in this case. in sve_set() 1096 .set = gpr_set 1109 .set = fpr_set 1117 .set = tls_set, 1126 .set = hw_break_set, 1134 .set = hw_break_set, 1143 .set = system_call_set, 1153 .set = sve_set, 1163 /* this cannot be set dynamicall [all...] |
/kernel/linux/linux-5.10/drivers/media/pci/ivtv/ |
H A D | ivtv-ioctl.c | 54 static u16 select_service_from_set(int field, int line, u16 set, int is_pal) in select_service_from_set() argument 59 set = set & valid_set; in select_service_from_set() 60 if (set == 0 || !valid_service_line(field, line, is_pal)) { in select_service_from_set() 64 if (line == 21 && (set & V4L2_SLICED_CAPTION_525)) in select_service_from_set() 68 if (line == 16 && field == 0 && (set & V4L2_SLICED_VPS)) in select_service_from_set() 70 if (line == 23 && field == 0 && (set & V4L2_SLICED_WSS_625)) in select_service_from_set() 76 if (BIT(i) & set) in select_service_from_set() 84 u16 set = fmt->service_set; in ivtv_expand_service_set() local 90 fmt->service_lines[f][l] = select_service_from_set(f, l, set, is_pa in ivtv_expand_service_set() 109 u16 set = 0; ivtv_get_service_set() local 1224 int set = itv->is_50hz ? V4L2_SLICED_VBI_625 : V4L2_SLICED_VBI_525; ivtv_g_sliced_vbi_cap() local [all...] |
/kernel/linux/linux-6.6/drivers/block/rnbd/ |
H A D | rnbd-clt.c | 125 pr_err("Failed to set new size of the device, device is not opened\n"); in rnbd_clt_resize_disk() 158 * set bit in a bitmap and returns corresponding CPU list. 1166 static void rnbd_rdma_map_queues(struct blk_mq_tag_set *set) in rnbd_rdma_map_queues() argument 1168 struct rnbd_clt_session *sess = set->driver_data; in rnbd_rdma_map_queues() 1171 set->map[HCTX_TYPE_DEFAULT].nr_queues = num_online_cpus(); in rnbd_rdma_map_queues() 1172 set->map[HCTX_TYPE_DEFAULT].queue_offset = 0; in rnbd_rdma_map_queues() 1173 set->map[HCTX_TYPE_READ].nr_queues = num_online_cpus(); in rnbd_rdma_map_queues() 1174 set->map[HCTX_TYPE_READ].queue_offset = 0; in rnbd_rdma_map_queues() 1175 blk_mq_map_queues(&set->map[HCTX_TYPE_DEFAULT]); in rnbd_rdma_map_queues() 1176 blk_mq_map_queues(&set in rnbd_rdma_map_queues() [all...] |
/kernel/linux/linux-6.6/drivers/media/pci/ivtv/ |
H A D | ivtv-ioctl.c | 49 static u16 select_service_from_set(int field, int line, u16 set, int is_pal) in select_service_from_set() argument 54 set = set & valid_set; in select_service_from_set() 55 if (set == 0 || !valid_service_line(field, line, is_pal)) { in select_service_from_set() 59 if (line == 21 && (set & V4L2_SLICED_CAPTION_525)) in select_service_from_set() 63 if (line == 16 && field == 0 && (set & V4L2_SLICED_VPS)) in select_service_from_set() 65 if (line == 23 && field == 0 && (set & V4L2_SLICED_WSS_625)) in select_service_from_set() 71 if (BIT(i) & set) in select_service_from_set() 79 u16 set = fmt->service_set; in ivtv_expand_service_set() local 85 fmt->service_lines[f][l] = select_service_from_set(f, l, set, is_pa in ivtv_expand_service_set() 104 u16 set = 0; ivtv_get_service_set() local 1218 int set = itv->is_50hz ? V4L2_SLICED_VBI_625 : V4L2_SLICED_VBI_525; ivtv_g_sliced_vbi_cap() local [all...] |
/third_party/mksh/ |
H A D | var.c | 46 /* may only be set by typeset() just before call to array_index_calc() */ 65 * assume caller has allocated and set up e->loc 456 /* set variable to string value */ 509 /* set variable to integer */ 536 /* XXX is it possible for ISSET to be set and val.s to be NULL? */ in getint() 757 * lookup variable (according to (set&LOCAL)), set its attributes 759 * UCASEV_AL), and optionally set its value if an assignment. 762 typeset(const char *var, uint32_t set, uint32_t clr, int field, int base) in typeset() argument 764 return (vtypeset(NULL, var, set, cl in typeset() 767 vtypeset(int *ep, const char *var, uint32_t set, uint32_t clr, int field, int base) vtypeset() argument [all...] |
/third_party/skia/tests/ |
H A D | MatrixTest.cpp | 677 mats[i].set(j, rand.nextRangeF(-3000.f, 3000.f)); in test_matrix_homogeneous() 720 pnt.set(src.fX, src.fY); in test_matrix_homogeneous() 734 pnt.set(src.fX, src.fY); in test_matrix_homogeneous() 750 pnt.set(src.fX, src.fY); in test_matrix_homogeneous() 916 m.set(SkMatrix::kMScaleX, gRectStaysRectSamples[i].m00); in DEF_TEST() 917 m.set(SkMatrix::kMSkewX, gRectStaysRectSamples[i].m01); in DEF_TEST() 918 m.set(SkMatrix::kMSkewY, gRectStaysRectSamples[i].m10); in DEF_TEST() 919 m.set(SkMatrix::kMScaleY, gRectStaysRectSamples[i].m11); in DEF_TEST() 926 mat.set(SkMatrix::kMScaleX, 1) in DEF_TEST() 927 .set(SkMatri in DEF_TEST() [all...] |
/third_party/python/Lib/test/ |
H A D | test_dict.py | 81 self.assertEqual(set(d.keys()), set()) 84 self.assertEqual(set(k), {'a', 'b'}) 94 self.assertEqual(set(d.values()), set()) 96 self.assertEqual(set(d.values()), {2}) 102 self.assertEqual(set(d.items()), set()) 105 self.assertEqual(set(d.items()), {(1, 2)}) 696 self.assertEqual(k1 - k2, set()) [all...] |
H A D | test_smtplib.py | 46 evt.set() 64 evt.set() 193 serv_evt.set() 206 # set client_evt, and it's then ok to kill the server 221 serv_evt.set() 266 self.client_evt.set() 393 self.client_evt.set() 409 self.client_evt.set() 426 self.client_evt.set() 487 self.client_evt.set() [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | SimpleDateFormat.java | 902 // defaultCenturyBase is set when an instance is created 1145 parsePattern(); // Need this before initNumberFormatters(), to set hasHanYearChar in initialize() 1317 * @param context The DisplayContext value to set. 1536 * this field; used to set pos when appropriate 1995 // Rule set exists, therefore periodType can't be null. in subFormat() 2263 * previously set by {@link #setNumberFormat(String, NumberFormat)} 2587 // If dayPeriod is set, use it in conjunction with hour-of-day to determine am/pm. in parse() 2592 // If hour is not set, set time to the midpoint of current day period, overwriting in parse() 2593 // minutes if it's set in parse() [all...] |
/kernel/linux/linux-5.10/drivers/firmware/ |
H A D | ti_sci.c | 276 * @msg_flags: Flag to set for the message 844 * ti_sci_cmd_set_device_resets() - command to set resets for device managed 919 * Each device has it's own set of clock inputs. This indexes 984 * Each device has it's own set of clock inputs. This indexes 1059 * Each device has it's own set of clock inputs. This indexes 1086 * Each device has it's own set of clock inputs. This indexes 1106 * Each device has it's own set of clock inputs. This indexes 1126 * Each device has it's own set of clock inputs. This indexes 1154 * Each device has it's own set of clock inputs. This indexes 1187 * Each device has it's own set o 3143 u16 set, free_bit; ti_sci_get_free_resource() local 3169 u16 set; ti_sci_release_resource() local 3190 u32 set, count = 0; ti_sci_get_num_resources() local [all...] |
/third_party/curl/lib/vtls/ |
H A D | schannel.c | 547 if(data->set.ssl.primary.clientcert || data->set.ssl.primary.cert_blob) { in schannel_acquire_credential_handle() 557 bool blob = data->set.ssl.primary.cert_blob != NULL; in schannel_acquire_credential_handle() 560 certdata = data->set.ssl.primary.cert_blob->data; in schannel_acquire_credential_handle() 561 certsize = data->set.ssl.primary.cert_blob->len; in schannel_acquire_credential_handle() 565 data->set.ssl.primary.clientcert); in schannel_acquire_credential_handle() 572 if(result && (data->set.ssl.primary.clientcert[0]!='\0')) in schannel_acquire_credential_handle() 573 fInCert = fopen(data->set.ssl.primary.clientcert, "rb"); in schannel_acquire_credential_handle() 578 data->set.ssl.primary.clientcert); in schannel_acquire_credential_handle() 584 if((fInCert || blob) && (data->set in schannel_acquire_credential_handle() [all...] |
/third_party/icu/icu4c/source/common/ |
H A D | normalizer2impl.cpp | 465 Normalizer2Impl::addLcccChars(UnicodeSet &set) const { 472 set.add(start, end); 475 if (fcd16 > 0xff) { set.add(start, end); } 488 sa->add(sa->set, start); 497 sa->add(sa->set, start); 507 sa->add(sa->set, c); 508 sa->add(sa->set, c+1); 510 sa->add(sa->set, Hangul::HANGUL_LIMIT); /* add Hangul+1 to continue with other properties */ 522 sa->add(sa->set, start); 1125 * Bit 0 set i [all...] |
/third_party/node/deps/icu-small/source/common/ |
H A D | normalizer2impl.cpp | 465 Normalizer2Impl::addLcccChars(UnicodeSet &set) const { 472 set.add(start, end); 475 if (fcd16 > 0xff) { set.add(start, end); } 488 sa->add(sa->set, start); 497 sa->add(sa->set, start); 507 sa->add(sa->set, c); 508 sa->add(sa->set, c+1); 510 sa->add(sa->set, Hangul::HANGUL_LIMIT); /* add Hangul+1 to continue with other properties */ 522 sa->add(sa->set, start); 1125 * Bit 0 set i [all...] |
/third_party/icu/ohos_icu4c/src/ |
H A D | icu_addon.cpp | 2343 void uset_add(USet *set, UChar32 c) in uset_add() argument 2345 U_ICU_ENTRY_POINT_RENAME(uset_add)(set, c); in uset_add() 2347 void uset_addString(USet *set, const UChar *str, int32_t strLen) in uset_addString() argument 2349 U_ICU_ENTRY_POINT_RENAME(uset_addString)(set, str, strLen); in uset_addString() 2351 void uset_clear(USet *set) in uset_clear() argument 2353 U_ICU_ENTRY_POINT_RENAME(uset_clear)(set); in uset_clear() 2355 void uset_close(USet *set) in uset_close() argument 2357 U_ICU_ENTRY_POINT_RENAME(uset_close)(set); in uset_close() 2359 void uset_complement(USet *set) in uset_complement() argument 2361 U_ICU_ENTRY_POINT_RENAME(uset_complement)(set); in uset_complement() 2363 uset_contains(const USet *set, UChar32 c) uset_contains() argument 2367 uset_containsString(const USet *set, const UChar *str, int32_t strLen) uset_containsString() argument 2371 uset_getItem(const USet *set, int32_t itemIndex, UChar32 *start, UChar32 *end, UChar *str, int32_t strCapacity, UErrorCode *ec) uset_getItem() argument 2376 uset_getItemCount(const USet *set) uset_getItemCount() argument 2380 uset_getRangeCount(const USet *set) uset_getRangeCount() argument 2384 uset_isEmpty(const USet *set) uset_isEmpty() argument 2400 uset_remove(USet *set, UChar32 c) uset_remove() argument 2404 uset_removeString(USet *set, const UChar *str, int32_t strLen) uset_removeString() argument 2408 uset_size(const USet *set) uset_size() argument 2412 uset_toPattern(const USet *set, UChar *result, int32_t resultCapacity, UBool escapeUnprintable, UErrorCode *ec) uset_toPattern() argument [all...] |
/base/hiviewdfx/hiview/base/ |
H A D | event.cpp | 82 std::set<std::string> eventNames;
in AddListenerInfo() 86 void EventListener::AddListenerInfo(uint32_t type, const std::set<std::string> &eventNames,
in AddListenerInfo()
|
/base/hiviewdfx/hiview/plugins/event_store/event_export/config/ |
H A D | export_event_list_parser.cpp | 18 #include <set> 47 std::set<std::string> uniqueNames(iter->second.begin(), iter->second.end()); in AddDomainNames()
|
/base/global/i18n/frameworks/intl/src/ |
H A D | character.cpp | 18 #include <set> 31 static std::set<UCharDirection> RTLDirectionSet = {
|