HomeSort by relevance Sort by last modified time
    Searched full:pair (Results 51 - 75 of 1449) sorted by null

1 23 4 5 6 7 8 91011>>

  /dalvik/docs/opcodes/
opcode-16-const-wide.html 18 register-pair.
85 The immediate value B is moved into the register pair (vA, v(A+1)), that is,
96 If v(A-1) is the lower half of a register pair, v(A-1)' becomes undefined.
99 If v(A+2) is the upper half of a register pair, v(A+2)' becomes undefined.
opcode-0a-move-result.html 59 value or require a register pair.
71 If register v(A-1) is the lower half of a register pair, register v(A-1)'
75 If register v(A+1) is the upper half of a register pair, register v(A+1)'
opcode-23-new-array.html 52 Register vB must not be part of a register pair.
86 If v(A-1) is the lower half of a register pair, v(A-1)' becomes undefined.
89 If v(A+1) is the upper half of a register pair, v(A+1)' becomes undefined.
  /external/skia/src/core/
SkPixelRef.cpp 86 struct Pair {
92 static Pair gPairs[MAX_PAIR_COUNT];
112 const Pair* pairs = gPairs;
122 const Pair* pairs = gPairs;
  /external/webkit/JavaScriptCore/bytecode/
Opcode.cpp 80 pair<int, int> leftPair = *(pair<int, int>*) left;
82 pair<int, int> rightPair = *(pair<int, int>*) right;
109 pair<int, int> sortedPairIndices[numOpcodeIDs * numOpcodeIDs];
110 pair<int, int>* currentPairIndex = sortedPairIndices;
114 qsort(sortedPairIndices, numOpcodeIDs * numOpcodeIDs, sizeof(pair<int, int>), compareOpcodePairIndices);
131 pair<int, int> indexPair = sortedPairIndices[i];
152 pair<int, int> indexPair = sortedPairIndices[j];
  /external/webkit/WebCore/platform/cf/
SchedulePair.h 73 static unsigned hash(const RefPtr<SchedulePair>& pair)
75 uintptr_t hashCodes[2] = { reinterpret_cast<uintptr_t>(pair->runLoop()), pair->mode() ? CFHash(pair->mode()) : 0 };
  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
umultimap.h 24 class multimap : public vector<pair<K,V> > {
31 typedef vector<pair<K,V> > base_class;
42 typedef pair<const_iterator,const_iterator> const_range_t;
43 typedef pair<iterator,iterator> range_t;
45 inline multimap (void) : vector<pair<K,V> > () {}
46 explicit inline multimap (size_type n) : vector<pair<K,V> > (n) {}
47 inline multimap (rcself_t v) : vector<pair<K,V> > (v) {}
48 inline multimap (const_iterator i1, const_iterator i2) : vector<pair<K,V> > () { insert (i1, i2); }
100 /// Inserts the pair into the container.
  /external/qemu/android/utils/
ini.c 68 IniPair* pair; local
78 pair = i->pairs + i->numPairs;
80 AARRAY_NEW(pair->key, keyLen + valueLen + 2);
81 memcpy(pair->key, key, keyLen);
82 pair->key[keyLen] = 0;
84 pair->value = pair->key + keyLen + 1;
85 memcpy(pair->value, value, valueLen);
86 pair->value[valueLen] = 0;
293 IniPair* pair = f->pairs local
    [all...]
  /bootable/diskinstaller/editdisklbl/
editdisklbl.c 127 char *pair = argv[optind++]; local
137 if (!(part_name = strsep(&pair, "=")) || !pair || !(*pair)) {
147 /* here pair points to the filename (after the '=') */
149 part_file_map[x++].filename = pair;
151 if (stat(pair, &tmp_stat) < 0) {
152 fprintf(stderr, "Could not stat file: %s\n", pair);
  /cts/tools/vm-tests/src/dot/junit/verify/b3/
Test_b3.java 26 * @title register (or pair) has to be assigned first before it can be read.
39 * @title register (or pair) has to be assigned first before it can be read.
  /dalvik/libcore/luni/src/test/java/tests/api/java/lang/reflect/
GenericReflectionCornerCases.java 39 static class Pair<T, S> {}
42 void wildcardEquality(Pair<? extends T, ? extends T> param) {}
62 Method method = clazz.getDeclaredMethod("wildcardEquality", Pair.class);
99 void wildcardUnEquality(Pair<? extends T, ? super T> param) {}
119 Method method = clazz.getDeclaredMethod("wildcardUnEquality", Pair.class);
155 void multipleBoundedWildcardUnEquality(Pair<? extends T, ? super T> param) {}
176 // new WildcardEquality<Object>().wildcardEquality(new Pair<String,
179 Method method = clazz.getDeclaredMethod("multipleBoundedWildcardUnEquality", Pair.class);
225 void multipleBoundedWildcardEquality(Pair<? extends T, ? extends T> param) {}
246 Method method = clazz.getDeclaredMethod("multipleBoundedWildcardEquality", Pair.class)
    [all...]
  /external/webkit/JavaScriptCore/wtf/
HashIterators.h 36 template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableConstIteratorAdapter<HashTableType, std::pair<KeyType, MappedType> > {
38 typedef std::pair<KeyType, MappedType> ValueType;
58 template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableIteratorAdapter<HashTableType, std::pair<KeyType, MappedType> > {
60 typedef std::pair<KeyType, MappedType> ValueType;
87 typedef HashTableConstIteratorAdapter<HashTableType, std::pair<KeyType, MappedType> > ConstIterator;
104 typedef HashTableConstIteratorAdapter<HashTableType, std::pair<KeyType, MappedType> > ConstIterator;
121 typedef HashTableIteratorAdapter<HashTableType, std::pair<KeyType, MappedType> > Iterator;
122 typedef HashTableConstIteratorAdapter<HashTableType, std::pair<KeyType, MappedType> > ConstIterator;
144 typedef HashTableIteratorAdapter<HashTableType, std::pair<KeyType, MappedType> > Iterator;
145 typedef HashTableConstIteratorAdapter<HashTableType, std::pair<KeyType, MappedType> > ConstIterator
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
JDKKeyPairGenerator.java 115 AsymmetricCipherKeyPair pair = engine.generateKeyPair(); local
116 RSAKeyParameters pub = (RSAKeyParameters)pair.getPublic();
117 RSAPrivateCrtKeyParameters priv = (RSAPrivateCrtKeyParameters)pair.getPrivate();
176 AsymmetricCipherKeyPair pair = engine.generateKeyPair(); local
177 DHPublicKeyParameters pub = (DHPublicKeyParameters)pair.getPublic();
178 DHPrivateKeyParameters priv = (DHPrivateKeyParameters)pair.getPrivate();
237 AsymmetricCipherKeyPair pair = engine.generateKeyPair(); local
238 DSAPublicKeyParameters pub = (DSAPublicKeyParameters)pair.getPublic();
239 DSAPrivateKeyParameters priv = (DSAPrivateKeyParameters)pair.getPrivate();
309 // AsymmetricCipherKeyPair pair = engine.generateKeyPair()
    [all...]
  /external/stlport/stlport/stl/debug/
_hashtable.h 209 pair<iterator, bool> insert_unique(const value_type& __obj) {
210 pair<_Base_iterator, bool> __res = _M_non_dbg_impl.insert_unique(__obj);
211 return pair<iterator, bool>(iterator(&_M_iter_list, __res.first), __res.second);
217 pair<iterator, bool> insert_unique_noresize(const value_type& __obj) {
218 pair<_Base_iterator, bool> __res = _M_non_dbg_impl.insert_unique_noresize(__obj);
219 return pair<iterator, bool>(iterator(&_M_iter_list, __res.first), __res.second);
271 pair<iterator, iterator> equal_range(const _KT& __key) {
272 pair<_Base_iterator, _Base_iterator> __res = _M_non_dbg_impl.equal_range(__key);
273 return pair<iterator,iterator> (iterator(&_M_iter_list,__res.first),
278 pair<const_iterator, const_iterator> equal_range(const _KT& __key) const
    [all...]
  /system/core/adb/
sysdeps_win32.c 101 SocketPair pair; member in union:FHRec_::__anon12989
113 #define fh_pair u.pair
1115 SocketPair pair = f->fh_pair; local
1117 if ( f == pair->a_fd ) {
1118 pair->a_fd = NULL;
1121 bip_buffer_close( &pair->b2a_bip );
1122 bip_buffer_close( &pair->a2b_bip );
1124 if ( --pair->used == 0 ) {
1125 bip_buffer_done( &pair->b2a_bip );
1126 bip_buffer_done( &pair->a2b_bip )
1144 SocketPair pair = f->fh_pair; local
1161 SocketPair pair = f->fh_pair; local
1192 SocketPair pair; local
1913 SocketPair pair = fh->fh_pair; local
1927 SocketPair pair = fh->fh_pair; local
    [all...]
  /dalvik/vm/compiler/codegen/arm/
RallocUtil.c 89 regs[i].pair = false;
102 p[i].reg, p[i].inUse, p[i].pair, p[i].partner, p[i].live,
134 assert(info1 && info2 && info1->pair && info2->pair &&
168 if (p[i].pair) {
178 if (p[i].pair) {
179 p[i].pair = false;
231 p[next].pair = false;
244 p[next].pair = false;
375 p[i].pair = false
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
shortest-path.h 171 typedef pair<StateId, Weight> Pair;
173 ShortestPathCompare(const vector<Pair>& pairs,
179 const Pair &px = pairs_[x];
180 const Pair &py = pairs_[y];
196 const vector<Pair> &pairs_;
233 typedef pair<StateId, Weight> Pair;
270 // characterized by a pair (s,w). The vector 'pairs' maps each
271 // state in 'ofst' to the corresponding pair maps states in OFST t
    [all...]
relabel.h 33 // new labels are specified using a vector of pair<Label,Label>.
44 const vector<pair<typename A::Label, typename A::Label> >& ipairs,
45 const vector<pair<typename A::Label, typename A::Label> >& opairs) {
70 // only relabel if relabel pair defined
108 vector<pair<Label, Label> > ipairs;
118 vector<pair<Label, Label> > opairs;
165 const vector<pair<Label, Label> >& ipairs,
166 const vector<pair<Label, Label> >& opairs,
330 const vector<pair<Label, Label> >& ipairs,
331 const vector<pair<Label, Label> >& opairs)
    [all...]
  /sdk/draw9patch/src/com/android/draw9patch/ui/
ImageEditorPanel.java 93 private Pair<Integer> horizontalPadding;
94 private Pair<Integer> verticalPadding;
    [all...]
  /cts/tools/vm-tests/src/dot/junit/opcodes/move/
Test_move.java 86 * @title src register is a part of reg pair
100 * register pair, but not touching the other half, the old register pair gets broken
  /cts/tools/vm-tests/src/dot/junit/opcodes/move_16/
Test_move_16.java 93 * @title src register is a part of reg pair
107 * register pair, but not touching the other half, the old register pair gets broken
  /cts/tools/vm-tests/src/dot/junit/opcodes/move_from16/
Test_move_from16.java 85 * @title src register is a part of reg pair
99 * register pair, but not touching the other half, the old register pair gets broken
  /cts/tools/vm-tests/src/dot/junit/opcodes/move_object/
Test_move_object.java 87 * @title src register is a part of reg pair
101 * register pair, but not touching the other half, the old register pair gets broken
  /cts/tools/vm-tests/src/dot/junit/opcodes/move_object_16/
Test_move_object_16.java 86 * @title src register is a part of reg pair
100 * register pair, but not touching the other half, the old register pair gets broken
  /cts/tools/vm-tests/src/dot/junit/opcodes/move_object_from16/
Test_move_object_from16.java 87 * @title src register is a part of reg pair
101 * register pair, but not touching the other half, the old register pair gets broken

Completed in 185 milliseconds

1 23 4 5 6 7 8 91011>>