HomeSort by relevance Sort by last modified time
    Searched defs:cdf (Results 1 - 20 of 20) sorted by null

  /external/tensorflow/tensorflow/contrib/distributions/python/ops/
conditional_distribution.py 60 def cdf(self, value, name="cdf", **condition_kwargs): member in class:ConditionalDistribution
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
encode.c 506 const uint16_t **cdf; local
583 cdf = WebRtcIsacfix_kPitchLagPtrLo;
585 cdf = WebRtcIsacfix_kPitchLagPtrMid;
587 cdf = WebRtcIsacfix_kPitchLagPtrHi;
590 &SaveEnc_str->pitchIndex[PITCH_SUBFRAMES*ii], cdf, PITCH_SUBFRAMES);
entropy_coding.c 1674 const uint16_t **cdf; local
1760 const uint16_t **cdf; local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
CompactDecimalFormatTest.java 350 // CompactDecimalFormat cdf = new CompactDecimalFormat(
362 // checkCdf("special cdf ", cdf, testItems);
370 CompactDecimalFormat cdf = local
372 assertEquals("Default significant digits", "123K", cdf.format(123456));
373 assertEquals("Default significant digits", "12K", cdf.format(12345));
374 assertEquals("Default significant digits", "1.2K", cdf.format(1234));
375 assertEquals("Default significant digits", "123", cdf.format(123));
380 CompactDecimalFormat cdf = local
382 AttributedCharacterIterator iter = cdf.formatToCharacterIterator(1234567)
398 NumberFormat cdf = local
465 CompactDecimalFormat cdf = getCDFInstance( local
477 CompactDecimalFormat cdf = CompactDecimalFormat.getInstance( local
490 CompactDecimalFormat cdf = CompactDecimalFormat.getInstance( local
503 CompactDecimalFormat cdf = CompactDecimalFormat.getInstance( local
515 CompactDecimalFormat cdf = getCDFInstance(locale, style); local
555 CompactDecimalFormat cdf = CompactDecimalFormat.getInstance( local
644 CompactDecimalFormat cdf = CompactDecimalFormat.getInstance(ULocale.US, CompactStyle.SHORT); local
658 CompactDecimalFormat cdf = CompactDecimalFormat.getInstance(loc, CompactStyle.SHORT); local
671 CompactDecimalFormat cdf = CompactDecimalFormat.getInstance(ULocale.ENGLISH, CompactStyle.SHORT); local
687 CompactDecimalFormat cdf; local
723 CompactDecimalFormat cdf; local
741 CompactDecimalFormat cdf; local
755 CompactDecimalFormat cdf = CompactDecimalFormat.getInstance(new ULocale("zh-Hant-HK"), CompactStyle.SHORT); local
763 CompactDecimalFormat cdf = CompactDecimalFormat.getInstance(locale, CompactStyle.SHORT); local
774 CompactDecimalFormat cdf = CompactDecimalFormat.getInstance(locale, CompactStyle.SHORT); local
782 CompactDecimalFormat cdf = CompactDecimalFormat.getInstance(loc, CompactStyle.SHORT); local
790 CompactDecimalFormat cdf = CompactDecimalFormat.getInstance(loc, CompactStyle.SHORT); local
    [all...]
DateFormatTest.java 3479 ChineseDateFormat cdf = new ChineseDateFormat("y'x'G-Ml-d", ULocale.US); local
    [all...]
NumberFormatTest.java 3223 NumberFormat cdf = CompactDecimalFormat.getInstance(Locale.ENGLISH, CompactDecimalFormat.CompactStyle.SHORT); local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
CompactDecimalFormatTest.java 347 // CompactDecimalFormat cdf = new CompactDecimalFormat(
359 // checkCdf("special cdf ", cdf, testItems);
367 CompactDecimalFormat cdf = local
369 assertEquals("Default significant digits", "123K", cdf.format(123456));
370 assertEquals("Default significant digits", "12K", cdf.format(12345));
371 assertEquals("Default significant digits", "1.2K", cdf.format(1234));
372 assertEquals("Default significant digits", "123", cdf.format(123));
377 CompactDecimalFormat cdf = local
379 AttributedCharacterIterator iter = cdf.formatToCharacterIterator(1234567)
395 NumberFormat cdf = local
462 CompactDecimalFormat cdf = getCDFInstance( local
474 CompactDecimalFormat cdf = CompactDecimalFormat.getInstance( local
487 CompactDecimalFormat cdf = CompactDecimalFormat.getInstance( local
500 CompactDecimalFormat cdf = CompactDecimalFormat.getInstance( local
512 CompactDecimalFormat cdf = getCDFInstance(locale, style); local
552 CompactDecimalFormat cdf = CompactDecimalFormat.getInstance( local
641 CompactDecimalFormat cdf = CompactDecimalFormat.getInstance(ULocale.US, CompactStyle.SHORT); local
655 CompactDecimalFormat cdf = CompactDecimalFormat.getInstance(loc, CompactStyle.SHORT); local
668 CompactDecimalFormat cdf = CompactDecimalFormat.getInstance(ULocale.ENGLISH, CompactStyle.SHORT); local
684 CompactDecimalFormat cdf; local
720 CompactDecimalFormat cdf; local
738 CompactDecimalFormat cdf; local
752 CompactDecimalFormat cdf = CompactDecimalFormat.getInstance(new ULocale("zh-Hant-HK"), CompactStyle.SHORT); local
760 CompactDecimalFormat cdf = CompactDecimalFormat.getInstance(locale, CompactStyle.SHORT); local
771 CompactDecimalFormat cdf = CompactDecimalFormat.getInstance(locale, CompactStyle.SHORT); local
779 CompactDecimalFormat cdf = CompactDecimalFormat.getInstance(loc, CompactStyle.SHORT); local
787 CompactDecimalFormat cdf = CompactDecimalFormat.getInstance(loc, CompactStyle.SHORT); local
    [all...]
DateFormatTest.java 3476 ChineseDateFormat cdf = new ChineseDateFormat("y'x'G-Ml-d", ULocale.US); local
    [all...]
NumberFormatTest.java 3220 NumberFormat cdf = CompactDecimalFormat.getInstance(Locale.ENGLISH, CompactDecimalFormat.CompactStyle.SHORT); local
    [all...]
  /external/tensorflow/tensorflow/contrib/coder/kernels/
range_coder_ops.cc 39 // A helper class to iterate over data and cdf simultaneously, while cdf is
60 // Pre-compute the pointer displacement for cdf.
65 // When the data linear index advances by one, the cdf linear index
69 // that i-th axis is broadcasting. The cdf linear index should be wound
70 // back by i-th axis stride, so that i-th axis coordinate of cdf is
79 // Returns the pointers to the current iterating locations to data and cdf
100 // For cdf pointer, it's more complicated because of broadcasting. When i-th
103 // coordinate for cdf is always 0. This value is precomputed as
122 "`cdf` should have one more axis than `data`: data shape="
146 const Tensor& cdf = context->input(1); variable
229 const Tensor& cdf = context->input(2); variable
    [all...]
range_coder_ops_test.cc 132 const Tensor& cdf) {
134 TF_ASSERT_OK(RunEncodeOp(precision, {data, cdf}, &encoded));
143 TF_ASSERT_OK(RunDecodeOp(precision, {encoded, shape, cdf}, &decoded));
222 Tensor cdf{DT_INT32, {1, 32, 32, 16, kMaxValue + 2}};
223 cdf.tensor<int32, 5>() = temp.tensor<int32, 5>().broadcast(broadcast);
225 TestEncodeAndDecode(kPrecision, data, cdf);
246 Tensor cdf{DT_INT32, {1, 1, kDimensionSize, kMaxMaxValue + 2}};
247 BuildCdf(&gen, &data, &cdf, maxvalue1);
248 TestEncodeAndDecode(kPrecision, data, cdf);
256 Tensor cdf{DT_INT32, {1, kDimensionSize, 1, kMaxMaxValue + 2}}
329 Node* cdf = test::graph::Constant(&g, cdf_tensor); local
462 TTypes<int32>::Flat cdf = cdf_tensor.flat<int32>(); local
    [all...]
  /external/tensorflow/tensorflow/core/util/
stat_summarizer.cc 250 InitField(stream, 8) << "[cdf%]";
382 InitField(stream, 11) << "[cdf %]";
387 float cdf = 0.0f; local
400 cdf += percentage;
406 InitField(stream, 10) << cdf << "%";
432 // TODO(andrewharp): Make this keep track of the particular metric for cdf.
  /external/tensorflow/tensorflow/python/ops/distributions/
distribution.py 50 "cdf",
290 The shape of arguments to `__init__`, `cdf`, `log_cdf`, `prob`, and
324 # The broadcasting holds across methods. Here we use `cdf` as an example. The
329 cum_prob_broadcast = u.cdf(4.0)
333 cum_prob_per_dist = u.cdf([[4.0, 5.0],
338 cum_prob_invalid = u.cdf([4.0, 5.0, 6.0])
762 Given random variable `X`, the cumulative distribution function `cdf` is:
769 a more accurate answer than simply taking the logarithm of the `cdf` when
783 raise NotImplementedError("cdf is not implemented")
796 def cdf(self, value, name="cdf") member in class:Distribution
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
encode.c 1021 const uint16_t** cdf; local
    [all...]
entropy_coding.c 40 /* CDF array for encoder bandwidth (12 vs 16 kHz) indicator. */
44 /* Pointer to cdf array for encoder bandwidth (12 vs 16 kHz) indicator. */
49 * Initial cdf index for decoder of encoded bandwidth
1603 const uint16_t** cdf; local
1689 const uint16_t** cdf; local
    [all...]
  /bionic/libc/kernel/uapi/linux/
atm.h 96 unsigned int cdf : 3; member in struct:atm_trafprm
  /external/iproute2/include/uapi/linux/
atm.h 152 unsigned int cdf_pres :1; /* cdf present bit*/
156 unsigned int cdf :3; /* Cutoff Decrease Factor (3-bit) */ member in struct:atm_trafprm
  /external/kernel-headers/original/uapi/linux/
atm.h 152 unsigned int cdf_pres :1; /* cdf present bit*/
156 unsigned int cdf :3; /* Cutoff Decrease Factor (3-bit) */ member in struct:atm_trafprm
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
atm.h 151 unsigned int cdf_pres :1; /* cdf present bit*/
155 unsigned int cdf :3; /* Cutoff Decrease Factor (3-bit) */ member in struct:atm_trafprm
  /external/testng/ant/
ivy-2.1.0.jar 

Completed in 938 milliseconds