HomeSort by relevance Sort by last modified time
    Searched full:absolutevalue (Results 1 - 25 of 42) sorted by null

1 2

  /external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/bijectors/
absolute_value_test.py 15 """Tests for AbsoluteValue Bijector."""
24 from tensorflow.contrib.distributions.python.ops.bijectors.absolute_value import AbsoluteValue
38 bijector = AbsoluteValue(event_ndims=0, validate_args=True)
61 AbsoluteValue(event_ndims=1)
66 abs_bijector = AbsoluteValue(event_ndims=event_ndims, validate_args=True)
73 bijector = AbsoluteValue(event_ndims=0, validate_args=True)
79 bijector = AbsoluteValue(event_ndims=0, validate_args=True)
  /external/tensorflow/tensorflow/contrib/distributions/python/ops/bijectors/
absolute_value.py 15 """AbsoluteValue bijector."""
30 "AbsoluteValue",
34 class AbsoluteValue(bijector.Bijector):
40 * For `y in (0, inf)`, `AbsoluteValue.inverse(y)` returns the set inverse
42 * `AbsoluteValue.inverse(0)` returns `0, 0`, which is not the set inverse
45 * For `y < 0`, `AbsoluteValue.inverse(y)` happily returns the
53 abs = tfd.bijectors.AbsoluteValue()
76 """Instantiates the `AbsoluteValue` bijector.
105 super(AbsoluteValue, self).__init__(
__init__.py 17 @@AbsoluteValue
  /frameworks/support/leanback/src/main/java/androidx/leanback/graphics/
BoundsRule.java 47 * @param absoluteValue Absolute value.
50 public static ValueRule absoluteValue(int absoluteValue) {
51 return new ValueRule(absoluteValue, 0);
65 ValueRule(int absoluteValue, float fraction) {
66 this.mAbsoluteValue = absoluteValue;
94 * @param absoluteValue Absolute value.
96 public void setAbsoluteValue(int absoluteValue) {
97 this.mAbsoluteValue = absoluteValue;
CompositeDrawable.java 322 obj.getBoundsRule().top = ValueRule.absoluteValue(value);
348 obj.getBoundsRule().bottom = ValueRule.absoluteValue(value);
375 obj.getBoundsRule().left = ValueRule.absoluteValue(value);
401 obj.getBoundsRule().right = ValueRule.absoluteValue(value);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
FloatyUnitTest.java 388 double absoluteValue = Math.abs(value);
391 if (absoluteValue == 0.) {
395 if (Double.isNaN(absoluteValue)) {
399 if (absoluteValue == Double.POSITIVE_INFINITY ||
400 absoluteValue == Double.NEGATIVE_INFINITY) {
405 if (absoluteValue < Math.scalb(1., -24)) {
409 if (absoluteValue < Math.scalb(1., -14)) {
419 if (absoluteValue < limit) {
425 assertTrue("Ulp not validated. Absolute value " + Double.toString(absoluteValue), tested);
CoreMathVerifier.java     [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/MCDisassembler/
EDToken.cpp 37 void EDToken::makeLiteral(bool sign, uint64_t absoluteValue) {
40 LiteralAbsoluteValue = absoluteValue;
EDToken.h 78 /// @arg absoluteValue - The absolute value of the literal
79 void makeLiteral(bool sign, uint64_t absoluteValue);
  /external/swiftshader/third_party/LLVM/tools/llvm-mc/
Disassembler.cpp 311 uint64_t absoluteValue;
312 if (token->literalAbsoluteValue(absoluteValue)) {
316 Out << absoluteValue;
  /frameworks/support/leanback/src/androidTest/java/androidx/leanback/graphics/
CompositeDrawableTest.java 84 parentDrawable.getChildAt(0).getBoundsRule().bottom = ValueRule.absoluteValue(200);
129 boundsRule.top = ValueRule.absoluteValue(-200);
  /external/syslinux/gpxe/src/drivers/net/
p80211hdr.h 5 * Copyright (C) 1999 AbsoluteValue Systems, Inc. All Rights Reserved.
36 * AbsoluteValue Systems Inc.
wlan_compat.h 5 * Copyright (C) 1999 AbsoluteValue Systems, Inc. All Rights Reserved.
36 * AbsoluteValue Systems Inc.
hfa384x.h 5 * Copyright (C) 1999 AbsoluteValue Systems, Inc. All Rights Reserved.
36 * AbsoluteValue Systems Inc.
    [all...]
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
Parallax.java 170 * @param absoluteValue The integer marker value.
173 public final PropertyMarkerValue atAbsolute(int absoluteValue) {
174 return new IntPropertyMarkerValue(this, absoluteValue, 0f);
  /external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/
transformed_distribution_test.py 90 bijector=bs.AbsoluteValue(event_ndims=0))
  /external/tensorflow/tensorflow/python/ops/distributions/
bijector_impl.py 340 method docstrings for specifics). Here we show by example the `AbsoluteValue`
355 abs = tf.contrib.distributions.bijectors.AbsoluteValue()
  /external/clang/include/clang/Basic/
DiagnosticGroups.td 21 def AbsoluteValue : DiagGroup<"absolute-value">;
    [all...]
DiagnosticSemaKinds.td 41 InGroup<AbsoluteValue>;
46 "of type %2 which may cause truncation of value">, InGroup<AbsoluteValue>;
50 InGroup<AbsoluteValue>;
54 InGroup<AbsoluteValue>;
    [all...]
  /external/libpcap/pcap/
dlt.h 537 * For future use with 802.11 captures - defined by AbsoluteValue
    [all...]
  /external/libpcap/
pcap-common.c 309 * For future use with 802.11 captures - defined by AbsoluteValue
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
DiagnosticGroups.td 21 def AbsoluteValue : DiagGroup<"absolute-value">;
    [all...]
DiagnosticSemaKinds.td 41 InGroup<AbsoluteValue>;
46 "of type %2 which may cause truncation of value">, InGroup<AbsoluteValue>;
50 InGroup<AbsoluteValue>;
54 InGroup<AbsoluteValue>;
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
DiagnosticGroups.td 21 def AbsoluteValue : DiagGroup<"absolute-value">;
    [all...]
  /external/ImageMagick/Magick++/lib/
Image.cpp 27 #define AbsoluteValue(x) ((x) < 0 ? -(x) : (x))
    [all...]

Completed in 8962 milliseconds

1 2