OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Floor
(Results
1 - 4
of
4
) sorted by null
/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
...]
/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/llvm/lib/Target/Mips/
MipsSEISelLowering.cpp
357
uint64_t
Floor
= 1LL << Log2_64(C);
361
// where floor_c = pow(2,
floor
(log2(c))) and ceil_c = pow(2, ceil(log2(c))),
363
if (C -
Floor
<= Ceil - C) {
364
SDValue Op0 = genConstMult(X,
Floor
, DL, VT, ShiftTy, DAG);
365
SDValue Op1 = genConstMult(X, C -
Floor
, DL, VT, ShiftTy, DAG);
Completed in 129 milliseconds