Home
last modified time | relevance | path

Searched refs:primary (Results 1 – 25 of 468) sorted by relevance

12345678910>>...19

/external/icu/icu4c/source/data/misc/
DsupplementalData.txt10689 primary{
10698 primary{
10704 primary{
10709 primary{
10715 primary{
10721 primary{
10727 primary{
10732 primary{
10738 primary{
10743 primary{
[all …]
/external/icu/icu4c/source/i18n/
Dcollation.cpp35 uint32_t primary; in incTwoBytePrimaryByOffset() local
38 primary = (uint32_t)((offset % 251) + 4) << 16; in incTwoBytePrimaryByOffset()
42 primary = (uint32_t)((offset % 254) + 2) << 16; in incTwoBytePrimaryByOffset()
46 return primary | ((basePrimary & 0xff000000) + (uint32_t)(offset << 24)); in incTwoBytePrimaryByOffset()
54 uint32_t primary = (uint32_t)((offset % 254) + 2) << 8; in incThreeBytePrimaryByOffset() local
60 primary |= (uint32_t)((offset % 251) + 4) << 16; in incThreeBytePrimaryByOffset()
64 primary |= (uint32_t)((offset % 254) + 2) << 16; in incThreeBytePrimaryByOffset()
68 return primary | ((basePrimary & 0xff000000) + (uint32_t)(offset << 24)); in incThreeBytePrimaryByOffset()
135 uint32_t primary = 2 + (c % 18) * 14; in unassignedPrimaryFromCodePoint() local
138 primary |= (2 + (c % 254)) << 8; in unassignedPrimaryFromCodePoint()
[all …]
Ducoleitr.cpp217 uint64_t primary = 0, secondary = 0, tertiary = 0, quaternary = 0; in processCE() local
232 primary = ucol_primaryOrder(ce); in processCE()
243 if ((toShift && variableTop > ce && primary != 0) in processCE()
244 || (isShifted && primary == 0)) { in processCE()
246 if (primary == 0) { in processCE()
251 quaternary = primary; in processCE()
254 primary = secondary = tertiary = 0; in processCE()
264 return primary << 48 | secondary << 32 | tertiary << 16 | quaternary; in processCE()
Dcollationiterator.cpp763 uint32_t primary = numericPrimary | ((firstByte + value) << 16); in appendNumericSegmentCEs() local
764 ceBuffer.append(Collation::makeCE(primary), errorCode); in appendNumericSegmentCEs()
772 uint32_t primary = numericPrimary | in appendNumericSegmentCEs() local
774 ceBuffer.append(Collation::makeCE(primary), errorCode); in appendNumericSegmentCEs()
782 uint32_t primary = numericPrimary | (2 + value % 254); in appendNumericSegmentCEs() local
784 primary |= (2 + value % 254) << 8; in appendNumericSegmentCEs()
786 primary |= (firstByte + value % 254) << 16; in appendNumericSegmentCEs()
787 ceBuffer.append(Collation::makeCE(primary), errorCode); in appendNumericSegmentCEs()
801 uint32_t primary = numericPrimary | ((132 - 4 + numPairs) << 16); in appendNumericSegmentCEs() local
824 primary |= pair; in appendNumericSegmentCEs()
[all …]
/external/bison/lib/
Dfd-hook.c34 execute_close_hooks (const struct fd_hook *remaining_list, gl_close_fn primary, in execute_close_hooks() argument
39 return primary (fd); in execute_close_hooks()
42 primary, fd); in execute_close_hooks()
46 execute_all_close_hooks (gl_close_fn primary, int fd) in execute_all_close_hooks() argument
48 return execute_close_hooks (anchor.private_next, primary, fd); in execute_all_close_hooks()
52 execute_ioctl_hooks (const struct fd_hook *remaining_list, gl_ioctl_fn primary, in execute_ioctl_hooks() argument
57 return primary (fd, request, arg); in execute_ioctl_hooks()
60 primary, fd, request, arg); in execute_ioctl_hooks()
64 execute_all_ioctl_hooks (gl_ioctl_fn primary, in execute_all_ioctl_hooks() argument
67 return execute_ioctl_hooks (anchor.private_next, primary, fd, request, arg); in execute_all_ioctl_hooks()
Dfd-hook.h50 gl_close_fn primary,
56 gl_ioctl_fn primary,
67 gl_close_fn primary,
73 gl_close_fn primary,
78 extern int execute_all_close_hooks (gl_close_fn primary, int fd);
87 gl_ioctl_fn primary,
93 gl_ioctl_fn primary,
98 extern int execute_all_ioctl_hooks (gl_ioctl_fn primary,
/external/v8/src/ic/
Dstub-cache.cc52 Entry* primary = entry(primary_, primary_offset); in Set() local
53 Code* old_code = primary->value; in Set()
58 Map* old_map = primary->map; in Set()
61 int seed = PrimaryOffset(primary->key, old_flags, old_map); in Set()
62 int secondary_offset = SecondaryOffset(primary->key, old_flags, seed); in Set()
64 *secondary = *primary; in Set()
68 primary->key = name; in Set()
69 primary->value = code; in Set()
70 primary->map = map; in Set()
79 Entry* primary = entry(primary_, primary_offset); in Get() local
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
DCollation.java466 long primary;
469 primary = ((offset % 251) + 4) << 16;
473 primary = ((offset % 254) + 2) << 16;
477 return primary | ((basePrimary & 0xff000000L) + ((long)offset << 24));
488 long primary = ((offset % 254) + 2) << 8;
494 primary |= ((offset % 251) + 4) << 16;
498 primary |= ((offset % 254) + 2) << 16;
502 return primary | ((basePrimary & 0xff000000L) + ((long)offset << 24));
577 long primary = 2 + (c % 18) * 14;
580 primary |= (2 + (c % 254)) << 8;
[all …]
DCollationIterator.java1039 long primary = numericPrimary | ((firstByte + value) << 16);
1040 ceBuffer.append(Collation.makeCE(primary));
1048 long primary = numericPrimary |
1050 ceBuffer.append(Collation.makeCE(primary));
1058 long primary = numericPrimary | (2 + value % 254);
1060 primary |= (2 + value % 254) << 8;
1062 primary |= (firstByte + value % 254) << 16;
1063 ceBuffer.append(Collation.makeCE(primary));
1077 long primary = numericPrimary | ((132 - 4 + numPairs) << 16);
1100 primary |= pair;
[all …]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollation.java464 long primary;
467 primary = ((offset % 251) + 4) << 16;
471 primary = ((offset % 254) + 2) << 16;
475 return primary | ((basePrimary & 0xff000000L) + ((long)offset << 24));
486 long primary = ((offset % 254) + 2) << 8;
492 primary |= ((offset % 251) + 4) << 16;
496 primary |= ((offset % 254) + 2) << 16;
500 return primary | ((basePrimary & 0xff000000L) + ((long)offset << 24));
575 long primary = 2 + (c % 18) * 14;
578 primary |= (2 + (c % 254)) << 8;
[all …]
DCollationIterator.java1037 long primary = numericPrimary | ((firstByte + value) << 16);
1038 ceBuffer.append(Collation.makeCE(primary));
1046 long primary = numericPrimary |
1048 ceBuffer.append(Collation.makeCE(primary));
1056 long primary = numericPrimary | (2 + value % 254);
1058 primary |= (2 + value % 254) << 8;
1060 primary |= (firstByte + value % 254) << 16;
1061 ceBuffer.append(Collation.makeCE(primary));
1075 long primary = numericPrimary | ((132 - 4 + numPairs) << 16);
1098 primary |= pair;
[all …]
/external/webrtc/webrtc/modules/audio_coding/neteq/
Dpacket.h26 bool primary; // Primary, i.e., not redundant payload. member
34 primary(true), in Packet()
49 this->primary == rhs.primary &&
71 return (this->primary && !rhs.primary);
Dpayload_splitter.cc62 new_packet->primary = true; // Last block is always primary. in SplitRed()
73 new_packet->primary = false; in SplitRed()
159 packet->primary = true; in SplitFec()
169 new_packet->primary = false; in SplitFec()
387 new_packet->primary = packet->primary; in SplitBySamples()
400 new_packet->primary = packet->primary; in SplitBySamples()
431 new_packet->primary = packet->primary; in SplitByFrames()
/external/autotest/client/site_tests/audio_CRASFormatConversion/
Daudio_CRASFormatConversion.py49 def loopback(self, noise_profile, primary, secondary): argument
61 'record-%s-%s.wav' % (primary, secondary))
70 popens += self.play_sine_tone(_TEST_TONE_ONE, primary)
91 primary, secondary, str(sox_stat))
111 for primary in test_sample_rates:
113 key = 'rms_value_%d_%d' % (primary, secondary)
115 noise_profile.name, primary, secondary)
/external/antlr/antlr-3.4/runtime/Python/tests/
Dt042ast.g196 : (primary->primary) // set return tree to just primary
201 | '.' p=primary
227 : primary^
231 : ids+=primary! (','! ids+=primary!)* {$res = [id.text for id in $ids]}
235 : ids+=primary (','! ids+=primary)*
273 : t=primary
323 primary
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
Dt042ast.g202 : (primary->primary) // set return tree to just primary
207 | '.' p=primary
233 : primary^
237 …: ids+=primary! (','! ids+=primary!)* {$res = org.antlr.lang.map($ids, function(id) { return id.ge…
241 : ids+=primary (','! ids+=primary)*
279 : t=primary
329 primary
/external/selinux/libsepol/tests/
Dtest-common.c91 if (!d->primary) in type_test_index()
152 type_datum_t *type, *primary; in test_alias_datum() local
156 primary = hashtab_search(p->p_types.table, primary_id); in test_alias_datum()
159 CU_ASSERT_PTR_NOT_NULL(primary); in test_alias_datum()
161 if (type && primary) { in test_alias_datum()
170 my_value = primary->s.value; in test_alias_datum()
172 my_primary = primary->s.value; in test_alias_datum()
173 CU_ASSERT_NOT_EQUAL(type->s.value, primary->s.value); in test_alias_datum()
179 CU_ASSERT(type->primary == my_primary); in test_alias_datum()
242 CU_ASSERT(attr->primary == 1); in test_attr_types()
/external/mesa3d/src/gallium/docs/source/
Dpipeline.txt7 primary/secondary colors ]
24 front/back & primary/secondary colors
60 primary/secondary colors only
77 primary/secondary colors
99 primary/secondary colors ] Software rast vertices
112 primary/secondary colors
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/Composition/
DVecMath_Parser.g326 : primary ( ( MULT^ | DOT^ ) primary )*
29 primary
/external/valgrind/docs/internals/
Dmultiple-architectures.txt17 A central notion is that of 'primary' vs 'secondary' platforms. The
18 system is built in its entirety for the primary platform, including
20 dual-arch systems, the primary platform is amd64 and ppc64
26 primary or secondary target. However, the regression and performance
44 VGCONF_PLATFORM_PRI_CAPS to be the primary target
110 as a program for the primary target (so a 64 bit program on amd64 and
127 for the primary architecture. These places are (at least):
135 the primary target, and in particular whether to hand -m32 or -m64 to
139 and AM_CCASFLAGS_PRI that must be used for compiling for the primary
144 This gives the -m32/-m64 flag needed to build for the primary target.
[all …]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/
Dnetworkinterface.py242 primary=None): argument
245 self.primary = primary
254 self.primary = True if value.lower() == 'true' else False
258 self.primary)
299 if ip_addr.primary is not None:
301 'true' if ip_addr.primary else 'false'
/external/clang/test/SemaObjC/
Dcontinuation-class-err.m14 @property(readwrite, copy) id object; // Ok. declaring memory model in class extension - primary ha…
15 … in class extension 'ReadOnly' (attribute must be 'readwrite', while its primary must be 'readonly…
34 …perty in class extension 'Bar' (attribute must be 'readwrite', while its primary must be 'readonly…
35 …perty in class extension 'Bar' (attribute must be 'readwrite', while its primary must be 'readonly…
Dprotocol-implementing-class-methods.m24 …d-warning {{category is implementing a method which will also be implemented by its primary class}}
26 …d-warning {{category is implementing a method which will also be implemented by its primary class}}
27 …d-warning {{category is implementing a method which will also be implemented by its primary class}}
/external/webrtc/webrtc/base/
Dwindowpicker.h48 bool primary() const { return primary_; } in primary() function
49 void set_primary(bool primary) { primary_ = primary; } in set_primary() argument
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/ec2/
Dtest_instance.py267 self.assertTrue(addresses[0].primary)
270 self.assertFalse(addresses[1].primary)
273 self.assertFalse(addresses[2].primary)

12345678910>>...19