Searched refs:floor (Results 1 - 25 of 120) sorted by relevance

12345

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/libvorbis-1.2.3/lib/books/
H A DMakefile.am3 SUBDIRS = coupled uncoupled floor
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavutil/
H A Dlibm.h78 return (x > 0) ? floor(x + 0.5) : ceil(x - 0.5);
85 return (x > 0) ? floor(x + 0.5) : ceil(x - 0.5);
92 return (x > 0) ? floor(x) : ceil(x);
99 return (x > 0) ? floor(x) : ceil(x);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavutil/
H A Dlibm.h144 return x >= 0 ? floor(x + 0.5) : ceil(x - 0.5);
165 return (x > 0) ? floor(x + 0.5) : ceil(x - 0.5);
172 return (x > 0) ? floor(x + 0.5) : ceil(x - 0.5);
179 return (x > 0) ? floor(x) : ceil(x);
186 return (x > 0) ? floor(x) : ceil(x);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/libvorbis-1.2.3/lib/
H A Dos.h41 # define rint(x) (floor((x)+0.5f))
50 # define rint(x) (floor((x)+0.5f))
175 the floor() call is required to ensure correct roudning of
177 return (int)floor(f+.5);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/share/replaygain_synthesis/include/private/
H A Dfast_float_math_hack.h9 #define floor floorf macro
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mtd/devices/
H A Ddoc2000.c274 /* DoC_SelectChip: Select a given flash chip within the current floor */
298 /* DoC_SelectFloor: Select a given floor (bank of flash chips) */
300 static inline int DoC_SelectFloor(struct DiskOnChip *doc, int floor) argument
304 /* Select the floor (bank) of chips required */
305 WriteDOC(floor, docptr, FloorSelect);
311 /* DoC_IdentChip: Identify a given NAND chip given {floor,chip} */
313 static int DoC_IdentChip(struct DiskOnChip *doc, int floor, int chip) argument
318 /* Page in the required floor/chip */
319 DoC_SelectFloor(doc, floor);
326 floor, chi
421 int floor, chip; local
[all...]
H A Ddoc2001.c152 /* DoC_SelectChip: Select a given flash chip within the current floor */
163 /* DoC_SelectFloor: Select a given floor (bank of flash chips) */
164 static int DoC_SelectFloor(void __iomem * docptr, int floor) argument
166 /* Select the floor (bank) of chips required */
167 WriteDOC(floor, docptr, FloorSelect);
173 /* DoC_IdentChip: Identify a given NAND chip given {floor,chip} */
174 static int DoC_IdentChip(struct DiskOnChip *doc, int floor, int chip) argument
179 DoC_SelectFloor(doc->virtadr, floor);
232 int floor, chip; local
240 /* For each floor, fin
[all...]
H A Ddoc2001plus.c154 /* DoC_SelectChip: Select a given flash chip within the current floor */
161 /* DoC_SelectFloor: Select a given floor (bank of flash chips) */
162 static int DoC_SelectFloor(void __iomem * docptr, int floor) argument
164 WriteDOC((floor & 0x3), docptr, Mplus_DeviceSelect);
265 /* DoC_IdentChip: Identify a given NAND chip given {floor,chip} */
266 static int DoC_IdentChip(struct DiskOnChip *doc, int floor, int chip) argument
272 /* Page in the required floor/chip */
273 DoC_SelectFloor(docptr, floor);
341 int floor, chip; local
364 /* For each floor, fin
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/include/asm/
H A Dhugetlb.h32 unsigned long floor,
35 free_pgd_range(tlb, addr, end, floor, ceiling);
30 hugetlb_free_pgd_range(struct mmu_gather *tlb, unsigned long addr, unsigned long end, unsigned long floor, unsigned long ceiling) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sparc/include/asm/
H A Dhugetlb.h37 unsigned long floor,
40 free_pgd_range(tlb, addr, end, floor, ceiling);
35 hugetlb_free_pgd_range(struct mmu_gather *tlb, unsigned long addr, unsigned long end, unsigned long floor, unsigned long ceiling) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/tile/include/asm/
H A Dhugetlb.h48 unsigned long floor,
51 free_pgd_range(tlb, addr, end, floor, ceiling);
46 hugetlb_free_pgd_range(struct mmu_gather *tlb, unsigned long addr, unsigned long end, unsigned long floor, unsigned long ceiling) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/include/asm/
H A Dhugetlb.h33 unsigned long floor,
36 free_pgd_range(tlb, addr, end, floor, ceiling);
31 hugetlb_free_pgd_range(struct mmu_gather *tlb, unsigned long addr, unsigned long end, unsigned long floor, unsigned long ceiling) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Ddctref.c84 block[i + j] = floor(tmp + 0.499999999999);
120 block[i * 8 + j] = floor(tmp + 0.5);
H A Dac3dsp.h102 * @param[in] floor noise floor
107 int snr_offset, int floor,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Ddctref.c84 block[i + j] = floor(tmp + 0.499999999999);
120 block[i * 8 + j] = floor(tmp + 0.5);
H A Dkbdwin.c56 window[i] = (int)floor(2147483647.0 * local_window[i] + 0.5);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/ia64/mm/
H A Dhugetlbpage.c125 unsigned long floor, unsigned long ceiling)
134 * If floor and ceiling are also in the hugetlb region, they
140 if (REGION_NUMBER(floor) == RGN_HPAGE)
141 floor = htlbpage_to_page(floor);
145 free_pgd_range(tlb, addr, end, floor, ceiling);
123 hugetlb_free_pgd_range(struct mmu_gather *tlb, unsigned long addr, unsigned long end, unsigned long floor, unsigned long ceiling) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/libvorbis-1.2.3/doc/
H A D07-floor1.tex8 Vorbis floor type one uses a piecewise straight-line representation to
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 following
61 \captionof{figure}{graph of example floor}
69 \captionof{figure}{graph of example floor}
74 pattern should be clear; we complete the floor computatio
[all...]
H A D04-codec.tex102 (placeholders in Vorbis I), floor configurations, residue
134 Vorbis uses two floor types; header decode is handed to the decode
139 \item For each \varname{[i]} of \varname{[vorbis_floor_count]} floor numbers:
141 \item read the floor type: vector \varname{[vorbis_floor_types]} element \varname{[i]} =
143 \item If the floor type is zero, decode the floor
146 configuration in slot \varname{[i]} of the floor configuration array \varname{[vorbis_floor_configurations]}.
147 \item If the floor type is one,
148 decode the floor configuration as defined in \xref{vorbis:spec:floor1}; save this configuration in slot \varname{[i]} of the floor configuratio
[all...]
H A D01-introduction.tex179 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
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 LSP
213 encoding/decoding. However, floor typ
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/mm/
H A Dhugetlbpage.c210 unsigned long floor, unsigned long ceiling)
217 if (start < floor)
234 unsigned long floor, unsigned long ceiling)
247 addr, next, floor, ceiling);
251 if (start < floor)
268 unsigned long floor, unsigned long ceiling)
281 hugetlb_free_pmd_range(tlb, pud, addr, next, floor,
285 addr, next, floor, ceiling);
290 if (start < floor)
312 unsigned long floor, unsigne
208 free_hugepd_range(struct mmu_gather *tlb, hugepd_t *hpdp, int pdshift, unsigned long start, unsigned long end, unsigned long floor, unsigned long ceiling) argument
232 hugetlb_free_pmd_range(struct mmu_gather *tlb, pud_t *pud, unsigned long addr, unsigned long end, unsigned long floor, unsigned long ceiling) argument
266 hugetlb_free_pud_range(struct mmu_gather *tlb, pgd_t *pgd, unsigned long addr, unsigned long end, unsigned long floor, unsigned long ceiling) argument
310 hugetlb_free_pgd_range(struct mmu_gather *tlb, unsigned long addr, unsigned long end, unsigned long floor, unsigned long ceiling) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/include/asm/
H A Dhugetlb.h47 unsigned long floor,
50 free_pgd_range(tlb, addr, end, floor, ceiling);
44 hugetlb_free_pgd_range(struct mmu_gather *tlb, unsigned long addr, unsigned long end, unsigned long floor, unsigned long ceiling) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/web/javascript/
H A Dformatter.js164 return Math.floor(Bps / speed_K);
188 var days = Math.floor (seconds / 86400),
189 hours = Math.floor ((seconds % 86400) / 3600),
190 minutes = Math.floor ((seconds % 3600) / 60),
191 seconds = Math.floor (seconds % 60),
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/mips/
H A Dac3dsp_mips.c65 int snr_offset, int floor,
83 m = (FFMAX(mask[band] - snr_offset - floor, 0) & 0x1FE0) + floor;
63 ac3_bit_alloc_calc_bap_mips(int16_t *mask, int16_t *psd, int start, int end, int snr_offset, int floor, const uint8_t *bap_tab, uint8_t *bap) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dextended.c177 fMant = ldexp(fMant, 32); fsMant = floor(fMant); hiMant = FloatToUnsigned(fsMant);
178 fMant = ldexp(fMant - fsMant, 32); fsMant = floor(fMant); loMant = FloatToUnsigned(fsMant);

Completed in 474 milliseconds

12345