Home
last modified time | relevance | path

Searched refs:K (Results 1 – 25 of 2279) sorted by relevance

12345678910>>...92

/external/caliper/caliper/src/test/resources/com/google/caliper/bridge/
Djdk6-gc.txt1 [GC 987K->384K(62848K), 0.0012320 secs]
2 [Full GC 384K->288K(62848K), 0.0054550 secs]
3 [GC 288K->288K(62848K), 0.0004450 secs]
4 [Full GC 288K->288K(62848K), 0.0049580 secs]
5 [GC 288K->288K(62848K), 0.0004590 secs]
6 [Full GC 288K->288K(62848K), 0.0048240 secs]
7 [GC 288K->288K(62848K), 0.0005700 secs]
8 [Full GC 288K->288K(62848K), 0.0063250 secs]
9 [GC 288K->288K(62848K), 0.0003540 secs]
10 [Full GC 288K->288K(62848K), 0.0048210 secs]
[all …]
Djdk7-gc.txt1 2013-02-11T20:15:26.706-0600: 0.098: [GC 1316K->576K(62848K), 0.0014240 secs]
2 2013-02-11T20:15:26.708-0600: 0.099: [Full GC 576K->486K(62848K), 0.0044860 secs]
3 2013-02-11T20:15:26.713-0600: 0.104: [GC 486K->486K(62848K), 0.0005000 secs]
4 2013-02-11T20:15:26.713-0600: 0.105: [Full GC 486K->486K(62848K), 0.0039840 secs]
5 2013-02-11T20:15:26.717-0600: 0.109: [GC 486K->486K(62848K), 0.0007650 secs]
6 2013-02-11T20:15:26.718-0600: 0.110: [Full GC 486K->486K(62848K), 0.0038350 secs]
7 2013-02-11T20:15:26.722-0600: 0.113: [GC 486K->486K(62848K), 0.0005430 secs]
8 2013-02-11T20:15:26.723-0600: 0.114: [Full GC 486K->486K(62848K), 0.0045480 secs]
9 2013-02-11T20:15:26.727-0600: 0.119: [GC 486K->486K(62848K), 0.0003950 secs]
10 2013-02-11T20:15:26.728-0600: 0.119: [Full GC 486K->486K(62848K), 0.0036570 secs]
[all …]
/external/kernel-headers/original/uapi/linux/
Dkeyboard.h44 #define K(t,v) (((t)<<8)|(v)) macro
48 #define K_F1 K(KT_FN,0)
49 #define K_F2 K(KT_FN,1)
50 #define K_F3 K(KT_FN,2)
51 #define K_F4 K(KT_FN,3)
52 #define K_F5 K(KT_FN,4)
53 #define K_F6 K(KT_FN,5)
54 #define K_F7 K(KT_FN,6)
55 #define K_F8 K(KT_FN,7)
56 #define K_F9 K(KT_FN,8)
[all …]
/external/guava/guava/src/com/google/common/collect/
DMaps.java103 static <K> Function<Entry<K, ?>, K> keyFunction() { in keyFunction()
112 static <K, V> Iterator<K> keyIterator(Iterator<Entry<K, V>> entryIterator) { in keyIterator() argument
113 return Iterators.transform(entryIterator, Maps.<K>keyFunction()); in keyIterator()
116 static <K, V> Iterator<V> valueIterator(Iterator<Entry<K, V>> entryIterator) { in valueIterator() argument
120 static <K, V> UnmodifiableIterator<V> valueIterator( in valueIterator()
121 final UnmodifiableIterator<Entry<K, V>> entryIterator) { in valueIterator() argument
148 public static <K extends Enum<K>, V> ImmutableMap<K, V> immutableEnumMap(
149 Map<K, ? extends V> map) {
152 ImmutableEnumMap<K, V> result = (ImmutableEnumMap<K, V>) map;
157 for (Map.Entry<K, ? extends V> entry : map.entrySet()) {
[all …]
DImmutableSortedMap.java59 public abstract class ImmutableSortedMap<K, V>
60 extends ImmutableSortedMapFauxverideShim<K, V> implements NavigableMap<K, V> {
70 static <K, V> ImmutableSortedMap<K, V> emptyMap(Comparator<? super K> comparator) { in emptyMap()
74 return new EmptyImmutableSortedMap<K, V>(comparator); in emptyMap()
78 static <K, V> ImmutableSortedMap<K, V> fromSortedEntries( in fromSortedEntries()
79 Comparator<? super K> comparator, in fromSortedEntries()
81 Entry<K, V>[] entries) { in fromSortedEntries() argument
86 ImmutableList.Builder<K> keyBuilder = ImmutableList.builder(); in fromSortedEntries()
89 Entry<K, V> entry = entries[i]; in fromSortedEntries()
94 return new RegularImmutableSortedMap<K, V>( in fromSortedEntries()
[all …]
DMultimaps.java111 public static <K, V> Multimap<K, V> newMultimap(Map<K, Collection<V>> map, in newMultimap() argument
113 return new CustomMultimap<K, V>(map, factory); in newMultimap()
116 private static class CustomMultimap<K, V> extends AbstractMapBasedMultimap<K, V> {
119 CustomMultimap(Map<K, Collection<V>> map, in CustomMultimap() argument
146 Map<K, Collection<V>> map = (Map<K, Collection<V>>) stream.readObject(); in readObject()
192 public static <K, V> ListMultimap<K, V> newListMultimap( in newListMultimap()
193 Map<K, Collection<V>> map, final Supplier<? extends List<V>> factory) { in newListMultimap() argument
194 return new CustomListMultimap<K, V>(map, factory); in newListMultimap()
197 private static class CustomListMultimap<K, V>
198 extends AbstractListMultimap<K, V> {
[all …]
DForwardingNavigableMap.java52 public abstract class ForwardingNavigableMap<K, V>
53 extends ForwardingSortedMap<K, V> implements NavigableMap<K, V> {
59 protected abstract NavigableMap<K, V> delegate(); in delegate()
62 public Entry<K, V> lowerEntry(K key) { in lowerEntry()
71 protected Entry<K, V> standardLowerEntry(K key) { in standardLowerEntry()
76 public K lowerKey(K key) { in lowerKey()
85 protected K standardLowerKey(K key) { in standardLowerKey()
90 public Entry<K, V> floorEntry(K key) { in floorEntry()
99 protected Entry<K, V> standardFloorEntry(K key) { in standardFloorEntry()
104 public K floorKey(K key) { in floorKey()
[all …]
DMapConstraints.java84 public static <K, V> Map<K, V> constrainedMap( in constrainedMap() argument
85 Map<K, V> map, MapConstraint<? super K, ? super V> constraint) { in constrainedMap() argument
86 return new ConstrainedMap<K, V>(map, constraint); in constrainedMap()
105 public static <K, V> Multimap<K, V> constrainedMultimap( in constrainedMultimap() argument
106 Multimap<K, V> multimap, MapConstraint<? super K, ? super V> constraint) { in constrainedMultimap() argument
107 return new ConstrainedMultimap<K, V>(multimap, constraint); in constrainedMultimap()
126 public static <K, V> ListMultimap<K, V> constrainedListMultimap( in constrainedListMultimap() argument
127 ListMultimap<K, V> multimap, in constrainedListMultimap()
128 MapConstraint<? super K, ? super V> constraint) { in constrainedListMultimap() argument
129 return new ConstrainedListMultimap<K, V>(multimap, constraint); in constrainedListMultimap()
[all …]
DImmutableBiMap.java41 public abstract class ImmutableBiMap<K, V> extends ImmutableMap<K, V>
42 implements BiMap<K, V> {
49 public static <K, V> ImmutableBiMap<K, V> of() { in of()
50 return (ImmutableBiMap<K, V>) EmptyImmutableBiMap.INSTANCE; in of()
56 public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1) { in of()
57 return new SingletonImmutableBiMap<K, V>(k1, v1); in of()
65 public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1, K k2, V v2) { in of()
66 return new RegularImmutableBiMap<K, V>(entryOf(k1, v1), entryOf(k2, v2)); in of()
74 public static <K, V> ImmutableBiMap<K, V> of( in of()
75 K k1, V v1, K k2, V v2, K k3, V v3) { in of()
[all …]
DMapMakerInternalMap.java71 class MapMakerInternalMap<K, V>
72 extends AbstractMap<K, V> implements ConcurrentMap<K, V>, Serializable {
150 final transient Segment<K, V>[] segments;
178 final Queue<RemovalNotification<K, V>> removalNotificationQueue;
184 final RemovalListener<K, V> removalListener;
213 ? MapMakerInternalMap.<RemovalNotification<K, V>>discardingQueue() in MapMakerInternalMap()
214 : new ConcurrentLinkedQueue<RemovalNotification<K, V>>(); in MapMakerInternalMap()
297 <K, V> ValueReference<K, V> referenceValue( in referenceValue()
298 Segment<K, V> segment, ReferenceEntry<K, V> entry, V value) { in referenceValue() argument
299 return new StrongValueReference<K, V>(value); in referenceValue()
[all …]
DImmutableMap.java62 public abstract class ImmutableMap<K, V> implements Map<K, V>, Serializable {
69 public static <K, V> ImmutableMap<K, V> of() { in of()
79 public static <K, V> ImmutableMap<K, V> of(K k1, V v1) { in of()
88 public static <K, V> ImmutableMap<K, V> of(K k1, V v1, K k2, V v2) { in of()
89 return new RegularImmutableMap<K, V>(entryOf(k1, v1), entryOf(k2, v2)); in of()
97 public static <K, V> ImmutableMap<K, V> of( in of()
98 K k1, V v1, K k2, V v2, K k3, V v3) { in of()
99 return new RegularImmutableMap<K, V>( in of()
108 public static <K, V> ImmutableMap<K, V> of( in of()
109 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) { in of()
[all …]
/external/eigen/lapack/
Ddlarfb.f195 SUBROUTINE DLARFB( SIDE, TRANS, DIRECT, STOREV, M, N, K, V, LDV, argument
205 INTEGER K, LDC, LDT, LDV, LDWORK, M, N local
256 LASTV = MAX( K, ILADLR( M, K, V, LDV ) )
263 DO 10 J = 1, K
270 $ LASTC, K, ONE, V, LDV, WORK, LDWORK )
271 IF( LASTV.GT.K ) THEN
276 $ LASTC, K, LASTV-K,
277 $ ONE, C( K+1, 1 ), LDC, V( K+1, 1 ), LDV,
284 $ LASTC, K, ONE, T, LDT, WORK, LDWORK )
288 IF( LASTV.GT.K ) THEN
[all …]
Dslarfb.f195 SUBROUTINE SLARFB( SIDE, TRANS, DIRECT, STOREV, M, N, K, V, LDV, argument
205 INTEGER K, LDC, LDT, LDV, LDWORK, M, N local
256 LASTV = MAX( K, ILASLR( M, K, V, LDV ) )
263 DO 10 J = 1, K
270 $ LASTC, K, ONE, V, LDV, WORK, LDWORK )
271 IF( LASTV.GT.K ) THEN
276 $ LASTC, K, LASTV-K,
277 $ ONE, C( K+1, 1 ), LDC, V( K+1, 1 ), LDV,
284 $ LASTC, K, ONE, T, LDT, WORK, LDWORK )
288 IF( LASTV.GT.K ) THEN
[all …]
Dclarfb.f195 SUBROUTINE CLARFB( SIDE, TRANS, DIRECT, STOREV, M, N, K, V, LDV, argument
205 INTEGER K, LDC, LDT, LDV, LDWORK, M, N local
259 LASTV = MAX( K, ILACLR( M, K, V, LDV ) )
266 DO 10 J = 1, K
274 $ LASTC, K, ONE, V, LDV, WORK, LDWORK )
275 IF( LASTV.GT.K ) THEN
280 $ LASTC, K, LASTV-K, ONE, C( K+1, 1 ), LDC,
281 $ V( K+1, 1 ), LDV, ONE, WORK, LDWORK )
287 $ LASTC, K, ONE, T, LDT, WORK, LDWORK )
291 IF( M.GT.K ) THEN
[all …]
Dzlarfb.f195 SUBROUTINE ZLARFB( SIDE, TRANS, DIRECT, STOREV, M, N, K, V, LDV, argument
205 INTEGER K, LDC, LDT, LDV, LDWORK, M, N local
259 LASTV = MAX( K, ILAZLR( M, K, V, LDV ) )
266 DO 10 J = 1, K
274 $ LASTC, K, ONE, V, LDV, WORK, LDWORK )
275 IF( LASTV.GT.K ) THEN
280 $ LASTC, K, LASTV-K, ONE, C( K+1, 1 ), LDC,
281 $ V( K+1, 1 ), LDV, ONE, WORK, LDWORK )
287 $ LASTC, K, ONE, T, LDT, WORK, LDWORK )
291 IF( M.GT.K ) THEN
[all …]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DMaps.java98 static <K> Function<Entry<K, ?>, K> keyFunction() { in keyFunction()
107 static <K, V> Iterator<K> keyIterator(Iterator<Entry<K, V>> entryIterator) { in keyIterator() argument
108 return Iterators.transform(entryIterator, Maps.<K>keyFunction()); in keyIterator()
111 static <K, V> Iterator<V> valueIterator(Iterator<Entry<K, V>> entryIterator) { in valueIterator() argument
115 static <K, V> UnmodifiableIterator<V> valueIterator( in valueIterator()
116 final UnmodifiableIterator<Entry<K, V>> entryIterator) { in valueIterator() argument
143 public static <K extends Enum<K>, V> ImmutableMap<K, V> immutableEnumMap(
144 Map<K, ? extends V> map) {
147 ImmutableEnumMap<K, V> result = (ImmutableEnumMap<K, V>) map;
152 for (Map.Entry<K, ? extends V> entry : map.entrySet()) {
[all …]
DImmutableSortedMap.java37 public abstract class ImmutableSortedMap<K, V>
38 extends ForwardingImmutableMap<K, V> implements SortedMap<K, V> {
45 private Comparator<? super K> unusedComparatorForSerialization;
46 private K unusedKeyForSerialization;
49 private final transient SortedMap<K, V> sortedDelegate;
57 private final transient Comparator<? super K> comparator;
59 ImmutableSortedMap(SortedMap<K, V> delegate, Comparator<? super K> comparator) { in ImmutableSortedMap() argument
65 private static <K, V> ImmutableSortedMap<K, V> create( in create()
66 Comparator<? super K> comparator, in create()
67 Entry<? extends K, ? extends V>... entries) { in create() argument
[all …]
DMultimaps.java107 public static <K, V> Multimap<K, V> newMultimap(Map<K, Collection<V>> map, in newMultimap() argument
109 return new CustomMultimap<K, V>(map, factory); in newMultimap()
112 private static class CustomMultimap<K, V> extends AbstractMapBasedMultimap<K, V> {
115 CustomMultimap(Map<K, Collection<V>> map, in CustomMultimap() argument
167 public static <K, V> ListMultimap<K, V> newListMultimap( in newListMultimap()
168 Map<K, Collection<V>> map, final Supplier<? extends List<V>> factory) { in newListMultimap() argument
169 return new CustomListMultimap<K, V>(map, factory); in newListMultimap()
172 private static class CustomListMultimap<K, V>
173 extends AbstractListMultimap<K, V> {
176 CustomListMultimap(Map<K, Collection<V>> map, in CustomListMultimap() argument
[all …]
DImmutableBiMap.java28 public abstract class ImmutableBiMap<K, V> extends ForwardingImmutableMap<K, V>
29 implements BiMap<K, V> {
33 public static <K, V> ImmutableBiMap<K, V> of() { in of()
34 return (ImmutableBiMap<K, V>) EmptyImmutableBiMap.INSTANCE; in of()
37 public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1) { in of()
39 return new SingletonImmutableBiMap<K, V>(k1, v1); in of()
42 public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1, K k2, V v2) { in of()
43 return new RegularImmutableBiMap<K, V>(ImmutableMap.of(k1, v1, k2, v2)); in of()
46 public static <K, V> ImmutableBiMap<K, V> of( in of()
47 K k1, V v1, K k2, V v2, K k3, V v3) { in of()
[all …]
DImmutableMap.java43 public abstract class ImmutableMap<K, V> implements Map<K, V>, Serializable {
47 public static <K, V> ImmutableMap<K, V> of() { in of()
51 public static <K, V> ImmutableMap<K, V> of(K k1, V v1) { in of()
55 public static <K, V> ImmutableMap<K, V> of(K k1, V v1, K k2, V v2) { in of()
56 return new RegularImmutableMap<K, V>(entryOf(k1, v1), entryOf(k2, v2)); in of()
59 public static <K, V> ImmutableMap<K, V> of( in of()
60 K k1, V v1, K k2, V v2, K k3, V v3) { in of()
61 return new RegularImmutableMap<K, V>( in of()
65 public static <K, V> ImmutableMap<K, V> of( in of()
66 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) { in of()
[all …]
DImmutableListMultimap.java51 public class ImmutableListMultimap<K, V>
52 extends ImmutableMultimap<K, V>
53 implements ListMultimap<K, V> {
58 public static <K, V> ImmutableListMultimap<K, V> of() { in of()
59 return (ImmutableListMultimap<K, V>) EmptyImmutableListMultimap.INSTANCE; in of()
65 public static <K, V> ImmutableListMultimap<K, V> of(K k1, V v1) { in of()
66 ImmutableListMultimap.Builder<K, V> builder in of()
75 public static <K, V> ImmutableListMultimap<K, V> of(K k1, V v1, K k2, V v2) { in of()
76 ImmutableListMultimap.Builder<K, V> builder in of()
86 public static <K, V> ImmutableListMultimap<K, V> of( in of()
[all …]
DImmutableSetMultimap.java59 public class ImmutableSetMultimap<K, V>
60 extends ImmutableMultimap<K, V>
61 implements SetMultimap<K, V> {
66 public static <K, V> ImmutableSetMultimap<K, V> of() { in of()
67 return (ImmutableSetMultimap<K, V>) EmptyImmutableSetMultimap.INSTANCE; in of()
73 public static <K, V> ImmutableSetMultimap<K, V> of(K k1, V v1) { in of()
74 ImmutableSetMultimap.Builder<K, V> builder = ImmutableSetMultimap.builder(); in of()
84 public static <K, V> ImmutableSetMultimap<K, V> of(K k1, V v1, K k2, V v2) { in of()
85 ImmutableSetMultimap.Builder<K, V> builder = ImmutableSetMultimap.builder(); in of()
96 public static <K, V> ImmutableSetMultimap<K, V> of( in of()
[all …]
/external/icu/icu4c/source/data/lang/
Dmer.txt5 ak{"Kĩakani"}
6 am{"Kĩamarĩki"}
7 ar{"Kĩarabu"}
8 be{"Kĩbelarusi"}
9 bg{"Kĩbulugĩria"}
10 bn{"Kĩbangira"}
11 cs{"Kĩcheki"}
12 de{"Kĩnjamanĩ"}
13 el{"Kĩngiriki"}
14 en{"Kĩngeretha"}
[all …]
Debu.txt5 ak{"Kĩakan"}
6 am{"Kĩamhari"}
7 ar{"Kĩarabu"}
8 be{"Kĩmbelarusi"}
9 bg{"Kĩbulgaria"}
10 bn{"Kĩbangla"}
11 cs{"Kĩcheki"}
12 de{"Kĩnjeremani"}
13 ebu{"Kĩembu"}
14 el{"Kĩngriki"}
[all …]
Dlag.txt5 ak{"Kɨakáani"}
6 am{"Kɨmʉháari"}
7 ar{"Kɨaráabu"}
8 be{"Kɨberalúusi"}
9 bg{"Kɨbulugária"}
10 bn{"Kɨbangála"}
11 cs{"Kɨchéeki"}
12 de{"Kɨjerʉmáani"}
13 el{"Kɨgiríki"}
14 en{"Kɨɨngeréesa"}
[all …]

12345678910>>...92