/third_party/openssl/crypto/ |
H A D | threads_pthread.c | 201 int CRYPTO_atomic_add(int *val, int amount, int *ret, CRYPTO_RWLOCK *lock) in CRYPTO_atomic_add() argument 205 *ret = __atomic_add_fetch(val, amount, __ATOMIC_ACQ_REL); in CRYPTO_atomic_add() 211 *ret = atomic_add_int_nv((volatile unsigned int *)val, amount); in CRYPTO_atomic_add() 218 *val += amount; in CRYPTO_atomic_add()
|
H A D | threads_win.c | 213 int CRYPTO_atomic_add(int *val, int amount, int *ret, CRYPTO_RWLOCK *lock) in CRYPTO_atomic_add() argument 215 *ret = (int)InterlockedExchangeAdd((long volatile *)val, (long)amount) + amount; in CRYPTO_atomic_add()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
H A D | ChineseCalendar.java | 561 public void add(int field, int amount) { in add() argument 564 if (amount != 0) { in add() 568 offsetMonth(moon, dom, amount); in add() 572 super.add(field, amount); in add() 581 public void roll(int field, int amount) { in roll() argument 584 if (amount != 0) { in roll() 619 int newM = (m + amount) % n; in roll() 630 super.roll(field, amount); in roll()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
H A D | ChineseCalendar.java | 544 public void add(int field, int amount) { in add() argument 547 if (amount != 0) { in add() 551 offsetMonth(moon, dom, amount); in add() 555 super.add(field, amount); in add() 563 public void roll(int field, int amount) { in roll() argument 566 if (amount != 0) { in roll() 601 int newM = (m + amount) % n; in roll() 612 super.roll(field, amount); in roll()
|
/third_party/libwebsockets/lib/tls/mbedtls/ |
H A D | mbedtls-client.c | 446 lws_filepos_t amount; in lws_tls_client_create_vhost_context() local 456 if (alloc_file(vh->context, cert_filepath, &buf, &amount)) in lws_tls_client_create_vhost_context() 459 buf[amount++] = '\0'; in lws_tls_client_create_vhost_context() 462 (int)amount, buf); in lws_tls_client_create_vhost_context() 491 lws_filepos_t amount; in lws_tls_client_create_vhost_context() local 495 if (alloc_file(vh->context, private_key_filepath, &buf, &amount)) in lws_tls_client_create_vhost_context() 498 buf[amount++] = '\0'; in lws_tls_client_create_vhost_context() 501 buf, (long)amount); in lws_tls_client_create_vhost_context()
|
/third_party/icu/icu4c/source/i18n/ |
H A D | gregocal.cpp | 814 * Roll a field by a signed amount. 819 GregorianCalendar::roll(EDateFields field, int32_t amount, UErrorCode& status) { in roll() argument 820 roll((UCalendarDateFields) field, amount, status); in roll() 824 GregorianCalendar::roll(UCalendarDateFields field, int32_t amount, UErrorCode& status) in roll() argument 826 if((amount == 0) || U_FAILURE(status)) { in roll() 884 woy += amount; in roll() 908 Calendar::roll(field, amount, status); in roll() 917 amount * kOneDay, monthLen); in roll() 923 __FILE__, __LINE__,amount, cMonthLen, cMonthStart+msIntoMonth); in roll() 931 Calendar::roll(field, amount, statu in roll() [all...] |
H A D | tmutamt.cpp | 26 TimeUnitAmount::TimeUnitAmount(double amount, in TimeUnitAmount() argument 29 : Measure(Formattable(amount), in TimeUnitAmount()
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | gregocal.cpp | 790 * Roll a field by a signed amount. 795 GregorianCalendar::roll(EDateFields field, int32_t amount, UErrorCode& status) { in roll() argument 796 roll((UCalendarDateFields) field, amount, status); in roll() 800 GregorianCalendar::roll(UCalendarDateFields field, int32_t amount, UErrorCode& status) UPRV_NO_SANITIZE_UNDEFINED { 801 if((amount == 0) || U_FAILURE(status)) { 859 woy += amount; 883 Calendar::roll(field, amount, status); 892 amount * kOneDay, monthLen); 898 __FILE__, __LINE__,amount, cMonthLen, cMonthStart+msIntoMonth); 906 Calendar::roll(field, amount, statu [all...] |
H A D | tmutamt.cpp | 26 TimeUnitAmount::TimeUnitAmount(double amount, in TimeUnitAmount() argument 29 : Measure(Formattable(amount), in TimeUnitAmount()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | gregocal.cpp | 814 * Roll a field by a signed amount. 819 GregorianCalendar::roll(EDateFields field, int32_t amount, UErrorCode& status) { in roll() argument 820 roll((UCalendarDateFields) field, amount, status); in roll() 824 GregorianCalendar::roll(UCalendarDateFields field, int32_t amount, UErrorCode& status) in roll() argument 826 if((amount == 0) || U_FAILURE(status)) { in roll() 884 woy += amount; in roll() 908 Calendar::roll(field, amount, status); in roll() 917 amount * kOneDay, monthLen); in roll() 923 __FILE__, __LINE__,amount, cMonthLen, cMonthStart+msIntoMonth); in roll() 931 Calendar::roll(field, amount, statu in roll() [all...] |
H A D | tmutamt.cpp | 26 TimeUnitAmount::TimeUnitAmount(double amount, in TimeUnitAmount() argument 29 : Measure(Formattable(amount), in TimeUnitAmount()
|
/third_party/vixl/src/aarch32/ |
H A D | assembler-aarch32.cc | 1969 uint32_t amount = operand.GetShiftAmount(); in adc() local 1971 // ADC{<c>}{<q>} {<Rd>}, <Rn>, <Rm> {, <shift> #<amount> } ; T2 in adc() 1972 if (!size.IsNarrow() && shift.IsValidAmount(amount) && in adc() 1974 uint32_t amount_ = amount % 32; in adc() 1982 // ADC{<c>}{<q>} {<Rd>}, <Rn>, <Rm> {, <shift> #<amount> } ; A1 in adc() 1983 if (shift.IsValidAmount(amount) && cond.IsNotNever()) { in adc() 1984 uint32_t amount_ = amount % 32; in adc() 2057 uint32_t amount = operand.GetShiftAmount(); in adcs() local 2059 // ADCS{<c>}{<q>} {<Rd>}, <Rn>, <Rm> {, <shift> #<amount> } ; T2 in adcs() 2060 if (!size.IsNarrow() && shift.IsValidAmount(amount) in adcs() 2256 uint32_t amount = operand.GetShiftAmount(); add() local 2425 uint32_t amount = operand.GetShiftAmount(); adds() local 2743 uint32_t amount = operand.GetShiftAmount(); and_() local 2831 uint32_t amount = operand.GetShiftAmount(); ands() local 3296 uint32_t amount = operand.GetShiftAmount(); bic() local 3384 uint32_t amount = operand.GetShiftAmount(); bics() local 3866 uint32_t amount = operand.GetShiftAmount(); cmn() local 3964 uint32_t amount = operand.GetShiftAmount(); cmp() local 4231 uint32_t amount = operand.GetShiftAmount(); eor() local 4319 uint32_t amount = operand.GetShiftAmount(); eors() local 5137 uint32_t amount = operand.GetShiftAmount(); ldr() local 5440 uint32_t amount = operand.GetShiftAmount(); ldrb() local 6102 uint32_t amount = operand.GetShiftAmount(); ldrh() local 6357 uint32_t amount = operand.GetShiftAmount(); ldrsb() local 6612 uint32_t amount = operand.GetShiftAmount(); ldrsh() local 7076 uint32_t amount = operand.GetShiftAmount(); mov() local 7220 uint32_t amount = operand.GetShiftAmount(); movs() local 7553 uint32_t amount = operand.GetShiftAmount(); mvn() local 7637 uint32_t amount = operand.GetShiftAmount(); mvns() local 7729 uint32_t amount = operand.GetShiftAmount(); orn() local 7771 uint32_t amount = operand.GetShiftAmount(); orns() local 7834 uint32_t amount = operand.GetShiftAmount(); orr() local 7922 uint32_t amount = operand.GetShiftAmount(); orrs() local 7973 uint32_t amount = operand.GetShiftAmount(); pkhbt() local 8007 uint32_t amount = operand.GetShiftAmount(); pkhtb() local 8181 uint32_t amount = operand.GetShiftAmount(); pld() local 8258 uint32_t amount = operand.GetShiftAmount(); pldw() local 8361 uint32_t amount = operand.GetShiftAmount(); pli() local 9163 uint32_t amount = operand.GetShiftAmount(); rsb() local 9247 uint32_t amount = operand.GetShiftAmount(); rsbs() local 9311 uint32_t amount = operand.GetShiftAmount(); rsc() local 9364 uint32_t amount = operand.GetShiftAmount(); rscs() local 9510 uint32_t amount = operand.GetShiftAmount(); sbc() local 9598 uint32_t amount = operand.GetShiftAmount(); sbcs() local 10802 uint32_t amount = operand.GetShiftAmount(); ssat() local 11495 uint32_t amount = operand.GetShiftAmount(); str() local 11656 uint32_t amount = operand.GetShiftAmount(); strb() local 12100 uint32_t amount = operand.GetShiftAmount(); strh() local 12238 uint32_t amount = operand.GetShiftAmount(); sub() local 12399 uint32_t amount = operand.GetShiftAmount(); subs() local 12534 uint32_t amount = operand.GetShiftAmount(); sxtab() local 12571 uint32_t amount = operand.GetShiftAmount(); sxtab16() local 12608 uint32_t amount = operand.GetShiftAmount(); sxtah() local 12655 uint32_t amount = operand.GetShiftAmount(); sxtb() local 12688 uint32_t amount = operand.GetShiftAmount(); sxtb16() local 12734 uint32_t amount = operand.GetShiftAmount(); sxth() local 12820 uint32_t amount = operand.GetShiftAmount(); teq() local 12904 uint32_t amount = operand.GetShiftAmount(); tst() local 13548 uint32_t amount = operand.GetShiftAmount(); usat() local 13693 uint32_t amount = operand.GetShiftAmount(); uxtab() local 13730 uint32_t amount = operand.GetShiftAmount(); uxtab16() local 13767 uint32_t amount = operand.GetShiftAmount(); uxtah() local 13814 uint32_t amount = operand.GetShiftAmount(); uxtb() local 13847 uint32_t amount = operand.GetShiftAmount(); uxtb16() local 13893 uint32_t amount = operand.GetShiftAmount(); uxth() local [all...] |
/third_party/icu/icu4c/source/i18n/unicode/ |
H A D | curramt.h | 34 * A currency together with a numeric amount, such as 200 USD. 42 * Construct an object with the given numeric amount and the given 44 * @param amount a numeric object; amount.isNumeric() must be true 47 * @param ec input-output error code. If the amount or the isoCode 51 CurrencyAmount(const Formattable& amount, ConstChar16Ptr isoCode, 55 * Construct an object with the given numeric amount and the given 57 * @param amount the amount of the given currency 64 CurrencyAmount(double amount, ConstChar16Pt [all...] |
/third_party/node/deps/icu-small/source/i18n/unicode/ |
H A D | curramt.h | 34 * A currency together with a numeric amount, such as 200 USD. 42 * Construct an object with the given numeric amount and the given 44 * @param amount a numeric object; amount.isNumeric() must be true 47 * @param ec input-output error code. If the amount or the isoCode 51 CurrencyAmount(const Formattable& amount, ConstChar16Ptr isoCode, 55 * Construct an object with the given numeric amount and the given 57 * @param amount the amount of the given currency 64 CurrencyAmount(double amount, ConstChar16Pt [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/unicode/ |
H A D | curramt.h | 34 * A currency together with a numeric amount, such as 200 USD. 42 * Construct an object with the given numeric amount and the given 44 * @param amount a numeric object; amount.isNumeric() must be true 47 * @param ec input-output error code. If the amount or the isoCode 51 CurrencyAmount(const Formattable& amount, ConstChar16Ptr isoCode, 55 * Construct an object with the given numeric amount and the given 57 * @param amount the amount of the given currency 64 CurrencyAmount(double amount, ConstChar16Pt [all...] |
/third_party/libwebsockets/minimal-examples/embedded/esp32/esp-wrover-kit/main/ |
H A D | lws-minimal-esp32.c | 55 size_t amount; member 83 m->amount += len; in myss_rx() 97 __func__, (unsigned int)m->amount); in myss_rx()
|
/third_party/libwebsockets/minimal-examples/embedded/esp32/esp-c3dev/main/ |
H A D | lws-minimal-esp32.c | 40 size_t amount; member 51 m->amount += len; in myss_rx() 61 (unsigned int)m->amount); in myss_rx()
|
/third_party/libwebsockets/minimal-examples/embedded/esp32/esp-heltec-wb32/main/ |
H A D | lws-minimal-esp32.c | 44 size_t amount; member 55 m->amount += len; in myss_rx() 65 (unsigned int)m->amount); in myss_rx()
|
/third_party/node/deps/openssl/openssl/crypto/ |
H A D | threads_win.c | 213 int CRYPTO_atomic_add(int *val, int amount, int *ret, CRYPTO_RWLOCK *lock) in CRYPTO_atomic_add() argument 215 *ret = (int)InterlockedExchangeAdd((long volatile *)val, (long)amount) + amount; in CRYPTO_atomic_add()
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_unsharp_opencl.c | 60 cl_float amount; member 113 float diam_x, diam_y, amount; in unsharp_opencl_make_filter_params() local 126 amount = ctx->luma_amount; in unsharp_opencl_make_filter_params() 130 amount = ctx->chroma_amount; in unsharp_opencl_make_filter_params() 200 ctx->plane[p].amount = amount; in unsharp_opencl_make_filter_params() 255 CL_SET_KERNEL_ARG(ctx->kernel, 4, cl_float, &ctx->plane[p].amount); in unsharp_opencl_filter_frame() 351 { "luma_amount", "Set luma amount (multiplier)", 354 { "la", "Set luma amount (multiplier)", 370 { "chroma_amount", "Set chroma amount (multiplie [all...] |
H A D | af_aexciter.c | 41 double amount; member 57 { "amount", "set amount", OFFSET(amount), AV_OPT_TYPE_DOUBLE, {.dbl=1}, 0, 64, A }, 181 const double amount = s->amount; in filter_frame() local 202 sample = sample * amount + listen * src[c]; in filter_frame()
|
/third_party/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/ |
H A D | CalendarICU.java | 45 public void add(int field, int amount) { in add() argument 47 fIcuCal.add(field, amount); in add() 223 public void roll(int field, int amount) { in roll() argument 225 fIcuCal.roll(field, amount); in roll()
|
/third_party/libwebsockets/lib/misc/lwsac/ |
H A D | lwsac.c | 73 lwsac_extend(struct lwsac *head, size_t amount) in lwsac_extend() argument 84 if (bf->alloc_size - bf->ofs < lwsac_align(amount)) in lwsac_extend() 89 memset(((uint8_t *)bf) + bf->ofs, 0, lwsac_align(amount)); in lwsac_extend() 90 bf->ofs += lwsac_align(amount); in lwsac_extend()
|
/third_party/vixl/src/aarch64/ |
H A D | pointer-auth-aarch64.cc | 82 // Rotate nibble to the left by the amount specified. 83 static uint64_t RotNibble(uint64_t in_cell, int amount) { in RotNibble() argument 84 VIXL_ASSERT((amount >= 0) && (amount <= 3)); in RotNibble() 88 return (temp >> (4 - amount)) & 0xf; in RotNibble()
|
/third_party/skia/gm/ |
H A D | colorfilterimagefilter.cpp | 101 static sk_sp<SkImageFilter> make_blur(float amount, sk_sp<SkImageFilter> input) { in make_blur() argument 102 return SkImageFilters::Blur(amount, amount, std::move(input)); in make_blur() 105 static sk_sp<SkImageFilter> make_brightness(float amount, sk_sp<SkImageFilter> input) { in make_brightness() argument 106 return SkImageFilters::ColorFilter(cf_make_brightness(amount), std::move(input)); in make_brightness()
|