HomeSort by relevance Sort by last modified time
    Searched full:entry (Results 126 - 150 of 27287) sorted by null

1 2 3 4 56 7 8 91011>>

  /bionic/tests/math_data/
scalbn_intel_data.h 18 { // Entry 0
23 { // Entry 1
28 { // Entry 2
33 { // Entry 3
38 { // Entry 4
43 { // Entry 5
48 { // Entry 6
53 { // Entry 7
58 { // Entry 8
63 { // Entry
    [all...]
fmax_intel_data.h 18 { // Entry 0
23 { // Entry 1
28 { // Entry 2
33 { // Entry 3
38 { // Entry 4
43 { // Entry 5
48 { // Entry 6
53 { // Entry 7
58 { // Entry 8
63 { // Entry
    [all...]
fmin_intel_data.h 18 { // Entry 0
23 { // Entry 1
28 { // Entry 2
33 { // Entry 3
38 { // Entry 4
43 { // Entry 5
48 { // Entry 6
53 { // Entry 7
58 { // Entry 8
63 { // Entry
    [all...]
ldexpf_intel_data.h 18 { // Entry 0
23 { // Entry 1
28 { // Entry 2
33 { // Entry 3
38 { // Entry 4
43 { // Entry 5
48 { // Entry 6
53 { // Entry 7
58 { // Entry 8
63 { // Entry
    [all...]
scalbnf_intel_data.h 18 { // Entry 0
23 { // Entry 1
28 { // Entry 2
33 { // Entry 3
38 { // Entry 4
43 { // Entry 5
48 { // Entry 6
53 { // Entry 7
58 { // Entry 8
63 { // Entry
    [all...]
nextafterf_intel_data.h 18 { // Entry 0
23 { // Entry 1
28 { // Entry 2
33 { // Entry 3
38 { // Entry 4
43 { // Entry 5
48 { // Entry 6
53 { // Entry 7
58 { // Entry 8
63 { // Entry
    [all...]
modf_intel_data.h 18 { // Entry 0
23 { // Entry 1
28 { // Entry 2
33 { // Entry 3
38 { // Entry 4
43 { // Entry 5
48 { // Entry 6
53 { // Entry 7
58 { // Entry 8
63 { // Entry
    [all...]
modff_intel_data.h 18 { // Entry 0
23 { // Entry 1
28 { // Entry 2
33 { // Entry 3
38 { // Entry 4
43 { // Entry 5
48 { // Entry 6
53 { // Entry 7
58 { // Entry 8
63 { // Entry
    [all...]
log1p_intel_data.h 18 { // Entry 0
22 { // Entry 1
26 { // Entry 2
30 { // Entry 3
34 { // Entry 4
38 { // Entry 5
42 { // Entry 6
46 { // Entry 7
50 { // Entry 8
54 { // Entry
    [all...]
atan2_intel_data.h 18 { // Entry 0
23 { // Entry 1
28 { // Entry 2
33 { // Entry 3
38 { // Entry 4
43 { // Entry 5
48 { // Entry 6
53 { // Entry 7
58 { // Entry 8
63 { // Entry
    [all...]
pow_intel_data.h 18 { // Entry 0
22 { // Entry 1
26 { // Entry 2
30 { // Entry 3
34 { // Entry 4
38 { // Entry 5
42 { // Entry 6
46 { // Entry 7
50 { // Entry 8
54 { // Entry
    [all...]
atanhf_intel_data.h 18 { // Entry 0
22 { // Entry 1
26 { // Entry 2
30 { // Entry 3
34 { // Entry 4
38 { // Entry 5
42 { // Entry 6
46 { // Entry 7
50 { // Entry 8
54 { // Entry
    [all...]
fmod_intel_data.h 18 { // Entry 0
23 { // Entry 1
28 { // Entry 2
33 { // Entry 3
38 { // Entry 4
43 { // Entry 5
48 { // Entry 6
53 { // Entry 7
58 { // Entry 8
63 { // Entry
    [all...]
  /external/libdrm/
xf86drmSL.c 74 SLEntryPtr entry; local
78 entry = drmMalloc(sizeof(*entry)
79 + (max_level + 1) * sizeof(entry->forward[0]));
80 if (!entry) return NULL;
81 entry->magic = SL_ENTRY_MAGIC;
82 entry->key = key;
83 entry->value = value;
84 entry->levels = max_level + 1;
86 return entry;
120 SLEntryPtr entry; local
140 SLEntryPtr entry; local
157 SLEntryPtr entry; local
191 SLEntryPtr entry; local
218 SLEntryPtr entry; local
259 SLEntryPtr entry; local
289 SLEntryPtr entry; local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
HandleMap.java 35 class Entry {
47 Entry(int serverIf, int handle, UUID uuid, int serviceType, int instance) {
56 Entry(int serverIf, int handle, UUID uuid, int serviceType, int instance,
67 Entry(int serverIf, int type, int handle, UUID uuid, int serviceHandle) {
75 Entry(int serverIf, int type, int handle, UUID uuid, int serviceHandle, int charHandle) {
85 List<Entry> mEntries = null;
90 mEntries = new ArrayList<Entry>();
101 mEntries.add(new Entry(serverIf, handle, uuid, serviceType, instance, advertisePreferred));
106 mEntries.add(new Entry(serverIf, TYPE_CHARACTERISTIC, handle, uuid, serviceHandle));
110 mEntries.add(new Entry(serverIf, TYPE_DESCRIPTOR, handle, uuid, serviceHandle, mLastCharacteristic))
163 Entry entry = it.next(); local
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractMapEntryTest.java 24 import java.util.Map.Entry;
36 private static <K, V> Entry<K, V> entry(final K key, final V value) { method in class:AbstractMapEntryTest
47 private static <K, V> Entry<K, V> control(K key, V value) {
52 assertEquals("foo=1", entry("foo", 1).toString());
56 assertEquals("null=1", entry(NK, 1).toString());
57 assertEquals("foo=null", entry("foo", NV).toString());
58 assertEquals("null=null", entry(NK, NV).toString());
62 Entry<String, Integer> foo1 = entry("foo", 1)
    [all...]
MultisetsImmutableEntryTest.java 20 import com.google.common.collect.Multiset.Entry;
35 private static <E> Entry<E> entry(final E element, final int count) { method in class:MultisetsImmutableEntryTest
39 private static <E> Entry<E> control(E element, int count) {
45 assertEquals("foo", entry("foo", 1).toString());
46 assertEquals("bar x 2", entry("bar", 2).toString());
50 assertEquals("null", entry(NE, 1).toString());
51 assertEquals("null x 2", entry(NE, 2).toString());
55 assertEquals(control("foo", 1), entry("foo", 1));
56 assertEquals(control("bar", 2), entry("bar", 2))
64 assertEquals(control(NE, 1), entry(NE, 1)); method
    [all...]
  /external/iproute2/lib/
names.c 72 struct db_entry *entry; local
93 entry = malloc(sizeof(*entry));
94 if (!entry)
97 entry->name = strdup(namebuf);
98 if (!entry->name) {
99 free(entry);
103 entry->id = id;
104 entry->next = db->hash[id & (db->size - 1)];
105 db->hash[id & (db->size - 1)] = entry;
122 struct db_entry *entry = db->hash[i]; local
139 struct db_entry *entry; local
159 struct db_entry *entry; local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
SimpleEntryTest.java 25 import java.util.Map.Entry;
34 static class NullEntry implements Entry {
52 Entry entryToPut = (Entry) map.entrySet().iterator().next();
53 Entry testEntry = new AbstractMap.SimpleEntry(entryToPut);
71 Entry entry = new AbstractMap.SimpleEntry<Integer, String>(1, "test"); local
72 assertEquals(1, entry.getKey());
73 entry = new AbstractMap.SimpleEntry(null, null);
74 assertNull(entry.getKey())
78 Entry entry = new AbstractMap.SimpleEntry<Integer, String>(1, "test"); local
85 Entry entry = new AbstractMap.SimpleEntry<Integer, String>(1, "test"); local
94 Entry entry = new AbstractMap.SimpleEntry<Integer, String>(1, "test"); local
    [all...]
  /external/llvm/test/Other/
2007-06-05-PassID.ll 5 entry:
8 return: ; preds = %entry
  /external/llvm/test/Transforms/CodeExtractor/
2004-03-17-UpdatePHIsOutsideRegion.ll 4 entry:
7 no_exit.1: ; preds = %endif, %expandbox.entry, %entry
8 br i1 false, label %endif, label %expandbox.entry
10 expandbox.entry: ; preds = %no_exit.1
16 loopexit.1: ; preds = %endif, %expandbox.entry
17 %ic.i.0.0.4 = phi i32 [ 0, %expandbox.entry ], [ 0, %endif ] ; <i32> [#uses=0]
20 loopexit.0: ; preds = %entry
  /external/llvm/test/Transforms/MergeFunc/
2013-01-10-MergeFuncAssert.ll 5 entry:
11 sw.bb: ; preds = %entry
14 sw.bb4: ; preds = %entry
17 sw.bb12: ; preds = %entry
22 entry:
28 sw.bb: ; preds = %entry
31 sw.bb4: ; preds = %entry
34 sw.bb8: ; preds = %entry
  /external/llvm/test/Transforms/PruneEH/
2008-06-02-Weak.ll 4 entry:
9 entry:
  /external/snakeyaml/src/test/resources/pyyaml/
spec-08-09.data 8 sequence: !!seq [ !!str entry,
9 # Mapping entry:
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-pie/
start.d 1 #name: missing entry symbol
3 #warning: .*: warning: cannot find entry symbol .*

Completed in 905 milliseconds

1 2 3 4 56 7 8 91011>>