HomeSort by relevance Sort by last modified time
    Searched refs:Floor (Results 1 - 16 of 16) sorted by null

  /ndk/sources/host-tools/make-3.81/
subproc.bat 18 rem Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
configure.bat 18 rem Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
build_w32.bat 16 rem Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/
converter_policies.hpp 15 #include <boost/config/no_tr1/cmath.hpp> // for std::floor and std::ceil
38 using std::floor ;
42 return s < static_cast<S>(0) ? ceil(s) : floor(s) ;
51 struct Floor
60 using std::floor ;
63 return floor(s) ;
100 using std::floor ;
105 S prev = floor(s);
119 bool is_prev_even = two * floor(prev / two) == prev ;
  /external/libvorbis/doc/
06-floor0.tex 4 \section{Floor type 0 setup and decode} \label{vorbis:spec:floor0}
8 Vorbis floor type zero uses Line Spectral Pair (LSP, also alternately
18 \subsection{Floor 0 format}
20 Floor zero configuration consists of six integer fields and a list of
26 Configuration information for instances of floor zero decodes from the
52 coefficient values from the bitstream, and then computing the floor
81 operation above, floor decode is to return 'unused' status as if the
92 for the floor currently being decoded has a
109 [floor0_amplitude_offset] values from floor setup, and an output
111 floor output vector
    [all...]
07-floor1.tex 4 \section{Floor type 1 setup and decode} \label{vorbis:spec:floor1}
8 Vorbis floor type one uses a piecewise straight-line representation to
16 \subsection{Floor 1 format}
20 Floor type one represents a spectral curve as a series of
21 line segments. Synthesis constructs a floor curve using iterative
28 full range of the spectral floor to be computed.
35 \item floor computation produces two new line segments, one running from
42 the codec setup header at floor 1 initialization time. Computation
51 For the below example, we assume a floor setup with an [n] of 128.
56 -45, 0, -25, -10, 30 and -10. We compute the floor in the followin
    [all...]
09-helper.tex 127 Floor decode type one uses the integer line drawing algorithm of
128 "render_line(x0, y0, x1, y1, v)" to construct an integer floor
01-introduction.tex 179 floor and residue vectors within a mapping. The submap functions as a
180 last layer of indirection such that specific special floor or residue
183 the proper floor and residue instance number to use for decoding that
184 submap's spectral floor and spectral residue vectors.
192 apply a full range floor and residue encoding to channels 0 through 4,
195 of a full-range floor) and channel 5 belongs to submap 1, which uses a
199 \subsubsection{Floor}
201 Vorbis encodes a spectral 'floor' vector for each PCM channel. This
204 whitening filter. It is named a 'floor' because the Xiph.Org
208 A floor encoding may be of two types. Floor 0 uses a packed LS
    [all...]
04-codec.tex 103 (placeholders in Vorbis I), floor configurations, residue
135 Vorbis uses two floor types; header decode is handed to the decode
140 \item For each \varname{[i]} of \varname{[vorbis_floor_count]} floor numbers:
142 \item read the floor type: vector \varname{[vorbis_floor_types]} element \varname{[i]} =
144 \item If the floor type is zero, decode the floor
147 configuration in slot \varname{[i]} of the floor configuration array \varname{[vorbis_floor_configurations]}.
148 \item If the floor type is one,
149 decode the floor configuration as defined in \xref{vorbis:spec:floor1}; save this configuration in slot \varname{[i]} of the floor configuration array \varname{[vorbis_floor_configurations]}
    [all...]
  /ndk/sources/host-tools/make-3.81/w32/subproc/
build.bat 34 rem Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  /external/llvm/include/llvm/Support/
ScaledNumber.h 196 // Get the floor of the lg of Digits.
199 // Get the actual floor.
200 int32_t Floor = Scale + LocalFloor;
202 return std::make_pair(Floor, 0);
207 return std::make_pair(Floor + Round, Round ? 1 : -1);
219 /// \brief Get the lg floor of a scaled number.
221 /// Get the floor of the lg of \c Digits*2^Scale.
559 /// Get the lg floor. lg 0 is defined to be INT32_MIN.
  /external/bison/doc/
refcard.tex 97 \centerline{51 Franklin Street, Fifth Floor}
122 \centerline{51 Franklin Street, Fifth Floor}
  /art/compiler/dex/quick/
dex_file_method_inliner.cc 169 "floor", // kNameCacheFloor
333 INTRINSIC(JavaLangMath, Floor, D_D, kIntrinsicFloor, 0),
334 INTRINSIC(JavaLangStrictMath, Floor, D_D, kIntrinsicFloor, 0),
    [all...]
  /external/llvm/lib/Target/Mips/
MipsSEISelLowering.cpp 812 uint64_t Floor = 1LL << Log2_64(C);
816 // where floor_c = pow(2, floor(log2(c))) and ceil_c = pow(2, ceil(log2(c))),
818 if (C - Floor <= Ceil - C) {
819 SDValue Op0 = genConstMult(X, Floor, DL, VT, ShiftTy, DAG);
820 SDValue Op1 = genConstMult(X, C - Floor, DL, VT, ShiftTy, DAG);
    [all...]
  /external/deqp/modules/glshared/
glsBuiltinPrecisionTests.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
DecimalTest.cpp 568 TEST_F(DecimalTest, Floor)
570 EXPECT_EQ(Decimal(1), Decimal(1).floor());
571 EXPECT_EQ(Decimal(0), encode(1, -10, Positive).floor());
572 EXPECT_EQ(Decimal(1), encode(11, -1, Positive).floor());
573 EXPECT_EQ(Decimal(1), encode(13, -1, Positive).floor());
574 EXPECT_EQ(Decimal(1), encode(15, -1, Positive).floor());
575 EXPECT_EQ(Decimal(1), encode(19, -1, Positive).floor());
576 EXPECT_EQ(Decimal(1), encode(193332, -5, Positive).floor());
577 EXPECT_EQ(Decimal(12), encode(12002, -3, Positive).floor());
579 EXPECT_EQ(Decimal(-1), Decimal(-1).floor());
    [all...]

Completed in 9280 milliseconds