Home
last modified time | relevance | path

Searched refs:amt (Results 1 - 25 of 38) sorted by relevance

12

/third_party/python/Lib/http/
H A Dclient.py450 def read(self, amt=None):
451 """Read and return the response body, or up to the next amt bytes."""
460 return self._read_chunked(amt)
462 if amt is not None:
463 if self.length is not None and amt > self.length:
465 amt = self.length
466 s = self.fp.read(amt)
467 if not s and amt:
578 def _read_chunked(self, amt=None):
587 if amt i
[all...]
/third_party/musl/libc-test/src/functional/
H A Dtest-malloc-stats-common.h82 static int expect_equal(long long amt, long long value, const char *amt_name) in expect_equal() argument
84 if (amt == value) { in expect_equal()
87 t_error("Expected %s(value: %lld) to be %lld\n", amt_name, amt, value); in expect_equal()
/third_party/node/deps/openssl/openssl/crypto/ec/curve448/arch_32/
H A Df_impl.h39 void gf_bias(gf a, int amt) in gf_bias() argument
42 uint32_t co1 = ((1 << 28) - 1) * amt, co2 = co1 - amt; in gf_bias()
/third_party/openssl/crypto/ec/curve448/arch_32/
H A Df_impl.h39 void gf_bias(gf a, int amt) in gf_bias() argument
42 uint32_t co1 = ((1 << 28) - 1) * amt, co2 = co1 - amt; in gf_bias()
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-blob/
H A Dminimal-secure-streams.c183 size_t amt; member
230 m->amt = 0; in myss_rx()
236 if ((m->amt + len) / 102400 != (m->amt / 102400)) { in myss_rx()
239 (unsigned int)((m->amt + len) / 1024)); in myss_rx()
248 m->amt += len; in myss_rx()
/third_party/node/src/quic/
H A Ddefs.h74 void IncrementStat(Stats* stats, uint64_t amt = 1) { in IncrementStat()
75 stats->*member += amt; in IncrementStat()
94 #define STAT_INCREMENT_N(Type, name, amt) \
95 IncrementStat<Type, &Type::name>(&stats_, amt);
H A Dlogstream.cc143 void LogStream::ensure_space(size_t amt) { in ensure_space() argument
144 while (total_ + amt > kMaxLogStreamBuffer) { in ensure_space()
H A Dlogstream.h76 void ensure_space(size_t amt);
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-alexa/
H A Daudio.c305 size_t amt, try; in callback_audio() local
313 try * 2, &amt); in callback_audio()
315 __func__, (int)amt, n); in callback_audio()
325 if (amt) { in callback_audio()
327 vhd->p, amt / 2); in callback_audio()
/third_party/node/deps/openssl/openssl/crypto/ec/curve448/
H A Dfield.h112 /* Subtract mod p. Bias by amt but don't reduce. */
113 static ossl_inline void gf_subx_nr(gf c, const gf a, const gf b, int amt) in gf_subx_nr() argument
116 gf_bias(c, amt); in gf_subx_nr()
117 if (GF_HEADROOM < amt + 1) in gf_subx_nr()
/third_party/openssl/crypto/ec/curve448/
H A Dfield.h112 /* Subtract mod p. Bias by amt but don't reduce. */
113 static ossl_inline void gf_subx_nr(gf c, const gf a, const gf b, int amt) in gf_subx_nr() argument
116 gf_bias(c, amt); in gf_subx_nr()
117 if (GF_HEADROOM < amt + 1) in gf_subx_nr()
/third_party/node/tools/configure.d/
H A Dnodedownload.py15 def formatSize(amt):
17 return "%.1f" % (amt / 1024000.)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DInterleavedLoadCombinePass.cpp205 void incErrorMSBs(unsigned amt) { in incErrorMSBs() argument
209 ErrorMSBs += amt; in incErrorMSBs()
215 void decErrorMSBs(unsigned amt) { in decErrorMSBs() argument
219 if (ErrorMSBs > amt) in decErrorMSBs()
220 ErrorMSBs -= amt; in decErrorMSBs()
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DLiteralByteStringTest.java256 long amt = in.skip(n); in skipFully()
257 if (amt == 0) { in skipFully()
270 n -= amt; in skipFully()
H A DNioByteStringTest.java269 long amt = in.skip(n); in skipFully()
270 if (amt == 0) { in skipFully()
283 n -= amt; in skipFully()
/third_party/node/deps/openssl/openssl/crypto/ec/curve448/arch_64/
H A Df_impl.h42 void gf_bias(gf a, int amt) in gf_bias() argument
/third_party/openssl/crypto/ec/curve448/arch_64/
H A Df_impl.h42 void gf_bias(gf a, int amt) in gf_bias() argument
/third_party/python/Lib/idlelib/
H A Dhelp.py67 def indent(self, amt=1):
69 self.level += amt
/third_party/ffmpeg/libavfilter/
H A Daf_afftdn.c70 double *amt; member
415 dnch->amt[i] = band_amt[bin2band[i]]; in process_frame()
418 if (dnch->amt[i] > abs_var[i]) { in process_frame()
420 } else if (dnch->amt[i] > dnch->min_abs_var[i]) { in process_frame()
421 const double limit = sqrt(abs_var[i] / dnch->amt[i]); in process_frame()
698 dnch->amt = av_calloc(s->bin_count, sizeof(*dnch->amt)); in config_input()
722 if (!dnch->amt || in config_input()
1181 av_freep(&dnch->amt); in uninit()
/third_party/icu/icu4c/source/i18n/
H A Dnumfmt.cpp508 const CurrencyAmount* amt; in ArgExtractor() local
509 if (o != NULL && (amt = dynamic_cast<const CurrencyAmount*>(o)) != NULL) { in ArgExtractor()
512 //const UChar* curr = amt->getISOCurrency(); in ArgExtractor()
513 u_strcpy(save, amt->getISOCurrency()); in ArgExtractor()
514 num = &amt->getNumber(); in ArgExtractor()
/third_party/node/deps/icu-small/source/i18n/
H A Dnumfmt.cpp508 const CurrencyAmount* amt; in ArgExtractor() local
509 if (o != nullptr && (amt = dynamic_cast<const CurrencyAmount*>(o)) != nullptr) { in ArgExtractor()
512 //const char16_t* curr = amt->getISOCurrency(); in ArgExtractor()
513 u_strcpy(save, amt->getISOCurrency()); in ArgExtractor()
514 num = &amt->getNumber(); in ArgExtractor()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dnumfmt.cpp508 const CurrencyAmount* amt; in ArgExtractor() local
509 if (o != NULL && (amt = dynamic_cast<const CurrencyAmount*>(o)) != NULL) { in ArgExtractor()
512 //const UChar* curr = amt->getISOCurrency(); in ArgExtractor()
513 u_strcpy(save, amt->getISOCurrency()); in ArgExtractor()
514 num = &amt->getNumber(); in ArgExtractor()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
H A DCalendarRegressionTest.java895 int amt = (int) DATA[i+2]; in Test4114578()
903 log(" add (HOUR," + (amt<0?"":"+")+amt + ")= "); in Test4114578()
904 cal.add(Calendar.HOUR, amt); in Test4114578()
907 log(" roll(HOUR," + (amt<0?"":"+")+amt + ")= "); in Test4114578()
908 cal.roll(Calendar.HOUR, amt); in Test4114578()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/calendar/
H A DCalendarRegressionTest.java898 int amt = (int) DATA[i+2]; in Test4114578()
906 log(" add (HOUR," + (amt<0?"":"+")+amt + ")= "); in Test4114578()
907 cal.add(Calendar.HOUR, amt); in Test4114578()
910 log(" roll(HOUR," + (amt<0?"":"+")+amt + ")= "); in Test4114578()
911 cal.roll(Calendar.HOUR, amt); in Test4114578()
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams/
H A Dminimal-secure-streams.c214 size_t amt; member

Completed in 28 milliseconds

12