/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/r11/sources/cxx-stl/llvm-libc++/libcxx/test/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/r13/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));
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/ |
builtin3.d | 1 # as: -fixed-special-register-names
|
/external/libopus/ |
silk_sources.mk | 90 silk/fixed/LTP_analysis_filter_FIX.c \ 91 silk/fixed/LTP_scale_ctrl_FIX.c \ 92 silk/fixed/corrMatrix_FIX.c \ 93 silk/fixed/encode_frame_FIX.c \ 94 silk/fixed/find_LPC_FIX.c \ 95 silk/fixed/find_LTP_FIX.c \ 96 silk/fixed/find_pitch_lags_FIX.c \ 97 silk/fixed/find_pred_coefs_FIX.c \ 98 silk/fixed/noise_shape_analysis_FIX.c \ 99 silk/fixed/prefilter_FIX.c [all...] |
silk_headers.mk | 31 silk/fixed/main_FIX.h \ 32 silk/fixed/structs_FIX.h \ 33 silk/fixed/mips/noise_shape_analysis_FIX_mipsr1.h \ 34 silk/fixed/mips/prefilter_FIX_mipsr1.h \ 35 silk/fixed/mips/warped_autocorrelation_FIX_mipsr1.h \
|
/toolchain/binutils/binutils-2.25/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 | 79 const SkScalar fixed = SkIntToScalar(fBitmap.width() - fCenter.width()); variable 82 { fixed * 4 / 5, fixed * 4 / 5 }, // shrink in both axes 83 { fixed * 4 / 5, fixed * 4 }, // shrink in X 84 { fixed * 4, fixed * 4 / 5 }, // shrink in Y 85 { fixed * 4, fixed * 4 } 100 SkRect r = SkRect::MakeXYWH(x + ix * fixed, y + iy * fixed [all...] |
/toolchain/binutils/binutils-2.25/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 .*
|
/toolchain/binutils/binutils-2.25/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);
|