HomeSort by relevance Sort by last modified time
    Searched refs:fixed (Results 1 - 25 of 1012) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/sfntly/cpp/src/sfntly/math/
fixed1616.h 26 static inline int32_t Integral(int32_t fixed) {
27 return (fixed >> 16);
30 static inline int32_t Fractional(int32_t fixed) {
31 return (fixed & 0xffff);
34 static inline int32_t Fixed(int32_t integral, int32_t fractional) {
  /external/clang/test/CodeGen/
arm64-abi-vector.c 19 double varargs_vec_2c(int fixed, ...) {
25 double sum = fixed;
26 va_start(ap, fixed);
38 double varargs_vec_3c(int fixed, ...) {
44 double sum = fixed;
45 va_start(ap, fixed);
58 double varargs_vec_4c(int fixed, ...) {
64 double sum = fixed;
65 va_start(ap, fixed);
78 double varargs_vec_5c(int fixed, ...)
    [all...]
arm-abi-vector.c 16 double varargs_vec_2i(int fixed, ...) {
41 double sum = fixed;
42 va_start(ap, fixed);
59 double varargs_vec_3c(int fixed, ...) {
73 double sum = fixed;
74 va_start(ap, fixed);
91 double varargs_vec_5c(int fixed, ...) {
116 double sum = fixed;
117 va_start(ap, fixed);
134 double varargs_vec_9c(int fixed, ...)
    [all...]
  /external/valgrind/none/tests/linux/
mremap2.stdout.exp 6 maymv 0 fixed 0 newsz 19 dstpo 0 dst 0x........ ->
12 maymv 0 fixed 0 newsz 19 dstpo 1 dst 0x........ ->
18 maymv 0 fixed 0 newsz 20 dstpo 0 dst 0x........ ->
24 maymv 0 fixed 0 newsz 20 dstpo 1 dst 0x........ ->
30 maymv 0 fixed 0 newsz 21 dstpo 0 dst 0x........ ->
36 maymv 0 fixed 0 newsz 21 dstpo 1 dst 0x........ ->
42 maymv 0 fixed 0 newsz 29 dstpo 0 dst 0x........ ->
48 maymv 0 fixed 0 newsz 29 dstpo 1 dst 0x........ ->
54 maymv 0 fixed 0 newsz 30 dstpo 0 dst 0x........ ->
60 maymv 0 fixed 0 newsz 30 dstpo 1 dst 0x........ ->
    [all...]
mremap2.c 43 // A suitable attempted fixed dst is workingarea + 150*PAGE.
108 int alocal, maymove, fixed, nsi, dstpossible; local
121 for (fixed = 0; fixed <= 1; fixed++) {
129 (fixed ? MREMAP_FIXED : 0);
143 printf("maymv %d fixed %d newsz %2d dstpo %d dst %p -> ",
144 maymove, fixed, newsizes[nsi], dstpossible, dst );
  /external/libcxx/test/std/input.output/iostreams.base/std.ios.manip/floatfield.manip/
fixed.pass.cpp 14 // ios_base& fixed(ios_base& str);
26 std::ios_base& r = std::fixed(ios);
28 assert(ios.flags() & std::ios::fixed);
defaultfloat.pass.cpp 28 assert(!(ios.flags() & std::ios::fixed));
hexfloat.pass.cpp 28 assert(ios.flags() & std::ios::fixed);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/iostreams.base/std.ios.manip/floatfield.manip/
fixed.pass.cpp 14 // ios_base& fixed(ios_base& str);
26 std::ios_base& r = std::fixed(ios);
28 assert(ios.flags() & std::ios::fixed);
defaultfloat.pass.cpp 28 assert(!(ios.flags() & std::ios::fixed));
hexfloat.pass.cpp 28 assert(ios.flags() & std::ios::fixed);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mmix/
builtin3.d 1 # as: -fixed-special-register-names
  /external/libopus/
silk_sources.mk 94 silk/fixed/LTP_analysis_filter_FIX.c \
95 silk/fixed/LTP_scale_ctrl_FIX.c \
96 silk/fixed/corrMatrix_FIX.c \
97 silk/fixed/encode_frame_FIX.c \
98 silk/fixed/find_LPC_FIX.c \
99 silk/fixed/find_LTP_FIX.c \
100 silk/fixed/find_pitch_lags_FIX.c \
101 silk/fixed/find_pred_coefs_FIX.c \
102 silk/fixed/noise_shape_analysis_FIX.c \
103 silk/fixed/process_gains_FIX.c
    [all...]
silk_headers.mk 34 silk/fixed/main_FIX.h \
35 silk/fixed/structs_FIX.h \
36 silk/fixed/arm/warped_autocorrelation_FIX_arm.h \
37 silk/fixed/mips/noise_shape_analysis_FIX_mipsr1.h \
38 silk/fixed/mips/warped_autocorrelation_FIX_mipsr1.h \
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
reloc-bad.l 2 [^:]*:5: Error: internal_relocation \(type: OFFSET_IMM\) not fixed up
vcvt-bad.d 1 #name: Invalid Immediate field for VCVT (between floating-point and fixed-point, VFP)
  /libcore/ojluni/src/test/java/time/tck/java/time/
TCKClock_Fixed.java 74 * Test fixed clock.
85 Clock test = Clock.fixed(INSTANT, PARIS);
93 Clock.fixed(null, PARIS);
98 Clock.fixed(INSTANT, null);
103 Clock test = Clock.fixed(INSTANT, PARIS);
110 Clock test = Clock.fixed(INSTANT, PARIS);
117 Clock.fixed(INSTANT, PARIS).withZone(null);
122 Clock a = Clock.fixed(INSTANT, ZoneOffset.UTC);
123 Clock b = Clock.fixed(INSTANT, ZoneOffset.UTC);
129 Clock c = Clock.fixed(INSTANT, PARIS)
    [all...]
  /external/skia/gm/
ninepatchstretch.cpp 76 const SkScalar fixed = SkIntToScalar(fBitmap.width() - fCenter.width()); variable
79 { fixed * 4 / 5, fixed * 4 / 5 }, // shrink in both axes
80 { fixed * 4 / 5, fixed * 4 }, // shrink in X
81 { fixed * 4, fixed * 4 / 5 }, // shrink in Y
82 { fixed * 4, fixed * 4 }
97 SkRect r = SkRect::MakeXYWH(x + ix * fixed, y + iy * fixed
    [all...]
  /external/skqp/gm/
ninepatchstretch.cpp 76 const SkScalar fixed = SkIntToScalar(fBitmap.width() - fCenter.width()); variable
79 { fixed * 4 / 5, fixed * 4 / 5 }, // shrink in both axes
80 { fixed * 4 / 5, fixed * 4 }, // shrink in X
81 { fixed * 4, fixed * 4 / 5 }, // shrink in Y
82 { fixed * 4, fixed * 4 }
97 SkRect r = SkRect::MakeXYWH(x + ix * fixed, y + iy * fixed
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/lns/
lns-common-1-alt.d 13 \[0x.*\] Advance PC by fixed size amount .* to .*
17 \[0x.*\] Advance PC by fixed size amount .* to .*
22 \[0x.*\] Advance PC by fixed size amount .* to .*
27 \[0x.*\] Advance PC by fixed size amount .* to .*
31 \[0x.*\] Advance PC by fixed size amount .* to .*
35 \[0x.*\] Advance PC by fixed size amount .* to .*
39 \[0x.*\] Advance PC by fixed size amount .* to .*
41 \[0x.*\] Advance PC by fixed size amount .* to .*
lns-big-delta.d 10 \[0x.*\] Advance PC by fixed size amount 0 to 0x0
15 \[0x.*\] Advance PC by fixed size amount . to 0x.*
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
micromips-warn-branch-delay.s 1 # Source file used to test microMIPS fixed-size branch delay slots.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
patchcheck.py 75 fixed = []
78 fixed.append(path)
79 return fixed
85 fixed = []
91 fixed.append(path)
92 return fixed
99 fixed = []
109 fixed.append(path)
112 return fixed
  /development/apps/OBJViewer/
Android.mk 12 # currently disabled because of API changes. won't be fixed for 1.0
  /libcore/ojluni/src/test/java/time/test/java/time/
TestClock_Fixed.java 74 * Test fixed clock.
84 Clock test = Clock.fixed(INSTANT, PARIS);
91 Clock test = Clock.fixed(INSTANT, PARIS);

Completed in 530 milliseconds

1 2 3 4 5 6 7 8 91011>>