Searched refs:grouping (Results 1 - 23 of 23) sorted by last modified time

/external/tremolo/Tremolo/
H A Dcodec_internal.h141 int grouping; /* group n vectors per partition */ member in struct:vorbis_info_residue
H A Dres012.c68 info->grouping=oggpack_read(opb,24)+1;
109 int samples_per_partition=info->grouping;
/external/v8/src/
H A Di18n.cc319 bool grouping; local
320 if (ExtractBooleanSetting(isolate, options, "useGrouping", &grouping)) {
321 number_format->setGroupingUsed(grouping);
/external/llvm/test/MC/X86/AlignedBundling/
H A Dautogen-inst-offset-align-to-end.s5 # It tests that bundle-aligned grouping works correctly in MC. Read the
H A Dautogen-inst-offset-padding.s5 # It tests that bundle-aligned grouping works correctly in MC. Read the
/external/libxml2/
H A Dtrio.h150 void trio_locale_set_grouping TRIO_PROTO((char *grouping));
/external/libvorbis/doc/
H A D01-introduction.tex178 A 'submap' is a configuration/grouping that applies to a subset of
/external/libvorbis/lib/
H A Dbackends.h110 int grouping; /* group n vectors per partition */ member in struct:vorbis_info_residue0
H A Dres0.c139 acc?(float)acc/(look->resvals[j]*info->grouping):0);
180 oggpack_write(opb,info->grouping-1,24); /* residue vectors to group and
211 info->grouping=oggpack_read(opb,24)+1;
420 int samples_per_partition=info->grouping;
487 int samples_per_partition=info->grouping;
551 int samples_per_partition=info->grouping;
666 int samples_per_partition=info->grouping;
811 int samples_per_partition=info->grouping;
H A Dvorbisenc.c41 int grouping; member in struct:__anon9366
469 r->grouping=res->grouping;
569 r->end=(int)((freq/nyq*blocksize*ch)/r->grouping+.9)* /* round up only if we're well past */
570 r->grouping;
571 /* the blocksize and grouping may disagree at the end */
572 if(r->end>blocksize*ch)r->end=blocksize*ch/r->grouping*r->grouping;
576 r->end=(int)((freq/nyq*blocksize)/r->grouping+.9)* /* round up only if we're well past */
577 r->grouping;
[all...]
/external/libcxx/src/
H A Dlocale.cpp4330 __grouping_ = lc->grouping;
4373 __grouping_ = lc->grouping;
/external/libcxx/test/std/localization/locale.categories/category.monetary/locale.moneypunct/locale.moneypunct.members/
H A Dgrouping.pass.cpp14 // string grouping() const;
61 assert(f.grouping() == std::string());
65 assert(f.grouping() == std::string());
69 assert(f.grouping() == std::string());
73 assert(f.grouping() == std::string());
/external/libcxx/test/std/localization/locale.categories/category.monetary/locale.moneypunct.byname/
H A Dgrouping.pass.cpp21 // string grouping() const;
63 // Monetary grouping strings may be terminated with 0 or CHAR_MAX, defining
64 // how the grouping is repeated.
68 assert(f.grouping() == s || f.grouping() == "");
72 assert(f.grouping() == s || f.grouping() == "");
76 assert(f.grouping() == s || f.grouping() == "");
80 assert(f.grouping()
[all...]
/external/libcxx/test/std/localization/locale.categories/facet.numpunct/locale.numpunct/facet.numpunct.members/
H A Dgrouping.pass.cpp14 // string grouping() const;
25 assert(np.grouping() == std::string());
30 assert(np.grouping() == std::string());
/external/libcxx/test/std/localization/locale.categories/facet.numpunct/locale.numpunct.byname/
H A Dgrouping.pass.cpp17 // string grouping() const;
34 assert(np.grouping() == "");
39 assert(np.grouping() == "");
47 assert(np.grouping() == "\3\3");
52 assert(np.grouping() == "\3\3");
60 assert(np.grouping() == "\x7F");
65 assert(np.grouping() == "\x7F");
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DDecimalFormat.java131 * same as the pattern character; in the U.S. locale, the ',' grouping character is
133 * modified, the grouping character changes. Some special characters affect the behavior
260 * <p>The <em>grouping separator</em> is a character that separates clusters of integer
262 * locales it separates ten-thousands. The <em>grouping size</em> is the number of digits
263 * between the grouping separators, such as 3 for "100,000,000" or 4 for "1 0000
264 * 0000". There are actually two different grouping sizes: One used for the least
265 * significant integer digits, the <em>primary grouping size</em>, and one used for all
266 * others, the <em>secondary grouping size</em>. In most locales these are the same, but
267 * sometimes they are different. For example, if the primary grouping interval is 3, and
269 * 123456789 is formatted as "12,34,56,789". If a pattern contains multiple grouping
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DRegion.java27 * selected economic and other grouping" as defined in
47 * GROUPING - A widely understood grouping of territories that has a well defined membership such
50 * their own region code. Region "EU" (European Union) is one such region code that is a grouping.
96 * Type representing a grouping of territories that is not to be used in
174 groupingContainment = territoryContainment.get("grouping");
273 for ( String grouping : groupings ) {
274 if (regionIDMap.containsKey(grouping)) {
275 r = regionIDMap.get(grouping);
/external/icu/icu4c/source/i18n/
H A Dwinnmfmt.cpp54 * Turns a string of the form "3;2;0" into the grouping UINT
59 static UINT getGrouping(const char *grouping) argument
64 for (s = grouping; *s != '\0'; s += 1) {
H A Ddecimfmt.cpp28 * Check for grouping size in subFormat()
1332 debug("Maybe format fastpath: fGroupingSize!=0 and grouping is used");
1780 * Return true if a grouping separator belongs at the given
1781 * position, based on whether grouping is in use and the values of
1782 * the primary and secondary grouping interval.
1786 * @return true if a grouping character belongs at the current
1830 const UnicodeString *grouping ;
1832 grouping = &getConstSymbol(DecimalFormatSymbols::kGroupingSeparatorSymbol);
1834 grouping = &getConstSymbol(DecimalFormatSymbols::kMonetaryGroupingSeparatorSymbol);
2046 // Output grouping separato
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.ide_3.6.2.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/bison/lib/
H A Dstrtol.c224 /* This file defines a function to check for correct grouping. */
225 # include "grouping.h"
256 /* The numeric grouping specification of the current locale,
258 const char *grouping; local
262 grouping = _NL_CURRENT (LC_NUMERIC, GROUPING);
263 if (*grouping <= 0 || *grouping == CHAR_MAX)
264 grouping = NULL;
274 grouping = NULL;
278 grouping
[all...]
/external/aac/libSBRdec/src/
H A Denv_calc.cpp300 int grouping = 0, index = 0, noGroups, k; local
303 /* Calculate grouping*/
306 if(grouping==0){
308 grouping = 1;
313 grouping = 0;
318 if(grouping){
323 grouping = 0;
328 if(grouping){

Completed in 526 milliseconds