HomeSort by relevance Sort by last modified time
    Searched defs:REAL (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplus.h 49 typedef float REAL;
  /external/skia/bench/
BlurBench.cpp 18 #define REAL 0.5f
102 DEF_BENCH(return new BlurBench(REAL, kNormal_SkBlurStyle);)
103 DEF_BENCH(return new BlurBench(REAL, kSolid_SkBlurStyle);)
104 DEF_BENCH(return new BlurBench(REAL, kOuter_SkBlurStyle);)
105 DEF_BENCH(return new BlurBench(REAL, kInner_SkBlurStyle);)
115 DEF_BENCH(return new BlurBench(REAL, kNormal_SkBlurStyle, SkBlurMaskFilter::kHighQuality_BlurFlag);)
MorphologyBench.cpp 17 #define REAL 1.5f
95 DEF_BENCH( return new MorphologyBench(REAL, kErode_MT); )
96 DEF_BENCH( return new MorphologyBench(REAL, kDilate_MT); )
BlurRectBench.cpp 17 #define REAL 1.5f
188 DEF_BENCH(return new BlurRectBoxFilterBench(REAL);)
192 DEF_BENCH(return new BlurRectGaussianBench(REAL);)
196 DEF_BENCH(return new BlurRectDirectBench(REAL);)
207 // to use in production for non-trivial radii, so no real point
  /external/skqp/bench/
BlurBench.cpp 18 #define REAL 0.5f
102 DEF_BENCH(return new BlurBench(REAL, kNormal_SkBlurStyle);)
103 DEF_BENCH(return new BlurBench(REAL, kSolid_SkBlurStyle);)
104 DEF_BENCH(return new BlurBench(REAL, kOuter_SkBlurStyle);)
105 DEF_BENCH(return new BlurBench(REAL, kInner_SkBlurStyle);)
115 DEF_BENCH(return new BlurBench(REAL, kNormal_SkBlurStyle, SkBlurMaskFilter::kHighQuality_BlurFlag);)
MorphologyBench.cpp 17 #define REAL 1.5f
95 DEF_BENCH( return new MorphologyBench(REAL, kErode_MT); )
96 DEF_BENCH( return new MorphologyBench(REAL, kDilate_MT); )
BlurRectBench.cpp 17 #define REAL 1.5f
188 DEF_BENCH(return new BlurRectBoxFilterBench(REAL);)
192 DEF_BENCH(return new BlurRectGaussianBench(REAL);)
196 DEF_BENCH(return new BlurRectDirectBench(REAL);)
207 // to use in production for non-trivial radii, so no real point
  /frameworks/support/room/common/src/main/java/androidx/room/
ColumnInfo.java 52 * {@link #INTEGER}, {@link #REAL}, or {@link #BLOB}.
105 int REAL = 4;
116 @IntDef({UNDEFINED, TEXT, INTEGER, REAL, BLOB})
  /external/compiler-rt/lib/interception/
interception.h 44 // You can access original function by calling REAL(foo)(bar, baz).
45 // By default, REAL(foo) will be visible only inside your interceptor, and if
71 // with same names in our library and then obtain the real function pointers
153 # define REAL(x) __interception::PTR_TO_REAL(x)
162 # define REAL(x) x
172 // macros does its job. In exceptional cases you may need to call REAL(foo)
  /external/trappy/trappy/stats/
grammar.py 52 REAL = Combine(Optional(oneOf("+ -")) + Word(nums) + "." +
166 FUNC_NAME + COLON + IDENTIFIER) | REAL | INTEGER | IDENTIFIER
200 # IDENTIFIER, Arithmetic expression, REAL number, INTEGER or a
  /libcore/ojluni/src/main/java/java/sql/
Types.java 81 * <code>REAL</code>.
83 public final static int REAL = 7;
  /cts/tests/tests/location/src/android/location/cts/asn1/base/
Asn1Tag.java 37 public static final Asn1Tag REAL = new Asn1Tag(Asn1TagClass.UNIVERSAL, 9);
  /external/tensorflow/tensorflow/cc/gradients/
math_grad_test.cc 84 REAL,
180 case REAL:
181 y = Real(scope_, x);
218 return complex64(val.real(), -val.imag());
503 TEST_F(CWiseUnaryGradTest, Real) {
507 TestCWiseGrad<complex64, float>(REAL, x_fn);
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
fft.c 50 * int WebRtcIsac_Fftn (int ndim, const int dims[], REAL Re[], REAL Im[],
57 * RE and IM hold the real and imaginary components of the data, and return
58 * the resulting real and imaginary Fourier coefficients. Multidimensional
77 * int WebRtcIsac_Fftradix (REAL Re[], REAL Im[], size_t nTotal, size_t nPass,
104 * The data can also be stored in a single array with alternating real and
107 * addresses for the sequences of real and imaginary values,
110 * REAL data [2*NTOTAL];
152 # define REAL doubl
    [all...]
  /external/scapy/scapy/asn1/
asn1.py 101 def clone(self): # /!\ not a real deep copy. self.codec is shared
160 REAL = 9
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
dot_op_emitter.cc 823 auto real = [&](llvm::Value* x) { local
887 llvm::Value* real = ir_builder_->CreateFSub( local
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
ir_emitter.cc 120 // based on the real element type.
459 auto real = [&](llvm::Value* x) { local
466 ir_builder_.CreateFMul(real(lhs_value), real(rhs_value)),
469 ir_builder_.CreateFMul(real(lhs_value), imag(rhs_value)),
470 ir_builder_.CreateFMul(imag(lhs_value), real(rhs_value)));
551 #define REAL(x) ir_builder_.CreateExtractValue(x, {0})
554 ir_builder_.CreateFMul(REAL(lhs_element), REAL(rhs_element)),
557 ir_builder_.CreateFMul(REAL(lhs_element), IMAG(rhs_element))
    [all...]
  /external/python/cpython2/Lib/lib-tk/
Tix.py 60 REAL = 'real'
    [all...]
  /external/python/cpython3/Lib/tkinter/
tix.py 52 REAL = 'real'
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
Tix.py 58 REAL = 'real'
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
Tix.py 58 REAL = 'real'
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Tix.py 58 REAL = 'real'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Tix.py 58 REAL = 'real'
    [all...]
  /prebuilts/sdk/current/androidx/m2repository/androidx/room/room-common/2.0.0-alpha1/
room-common-2.0.0-alpha1.jar 
  /toolchain/binutils/binutils-2.27/bfd/
linker.c 248 the element (an element is only added if it provides a real,
496 the real symbol. */
571 #undef REAL
572 #define REAL "__real_"
575 && CONST_STRNEQ (l, REAL)
576 && bfd_hash_lookup (info->wrap_hash, l + sizeof REAL - 1,
586 amt = strlen (l + sizeof REAL - 1) + 2;
593 strcat (n, l + sizeof REAL - 1);
599 #undef REAL
606 and the remainder is found in wrap_hash, return the real symbol. *
    [all...]

Completed in 534 milliseconds

1 2 3 4