Searched refs:i1 (Results 1 - 25 of 72) sorted by relevance

123

/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
H A Dfind_selectors.h53 * @param i1 Iterator on first sequence.
60 operator()(RandomAccessIterator1 i1, RandomAccessIterator2 i2, Pred pred) argument
61 { return pred(*i1); }
83 * @param i1 Iterator on first sequence.
90 operator()(RandomAccessIterator1 i1, RandomAccessIterator2 i2, Pred pred) argument
93 return pred(*i1, *(i1 + 1));
123 * @param i1 Iterator on first sequence.
130 operator()(RandomAccessIterator1 i1, RandomAccessIterator2 i2, Pred pred) argument
131 { return !pred(*i1, *i
167 operator ()(RandomAccessIterator1 i1, RandomAccessIterator2 i2, Pred pred) argument
[all...]
H A Dfind.h130 RandomAccessIterator1 i1 = begin1 + start; local
139 if (selector(i1, i2, pred))
147 ++i1;
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
H A Dpcm_params.h316 static inline int snd_interval_eq(const struct snd_interval *i1, const struct snd_interval *i2) argument
318 if (i1->empty)
321 return i1->empty;
322 return i1->min == i2->min && i1->openmin == i2->openmin &&
323 i1->max == i2->max && i1->openmax == i2->openmax;
H A Dcs46xx_dsp_scb_types.h1126 u32 i1; member in struct:dsp_magic_snoop_task
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
H A Dpcm_params.h316 static inline int snd_interval_eq(const struct snd_interval *i1, const struct snd_interval *i2) argument
318 if (i1->empty)
321 return i1->empty;
322 return i1->min == i2->min && i1->openmin == i2->openmin &&
323 i1->max == i2->max && i1->openmax == i2->openmax;
H A Dcs46xx_dsp_scb_types.h1126 u32 i1; member in struct:dsp_magic_snoop_task
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A Ddifflib.py196 # a list of (tag, i1, i2, j1, j2) tuples, where tag is
198 # 'replace' a[i1:i2] should be replaced by b[j1:j2]
199 # 'delete' a[i1:i2] should be deleted
201 # 'equal' a[i1:i2] == b[j1:j2]
508 i1 = j1 = k1 = 0
511 # Is this block adjacent to i1, j1, k1?
512 if i1 + k1 == i2 and j1 + k1 == j2:
522 non_adjacent.append((i1, j1, k1))
523 i1, j1, k1 = i2, j2, k2
525 non_adjacent.append((i1, j
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A Ddifflib.py196 # a list of (tag, i1, i2, j1, j2) tuples, where tag is
198 # 'replace' a[i1:i2] should be replaced by b[j1:j2]
199 # 'delete' a[i1:i2] should be deleted
201 # 'equal' a[i1:i2] == b[j1:j2]
508 i1 = j1 = k1 = 0
511 # Is this block adjacent to i1, j1, k1?
512 if i1 + k1 == i2 and j1 + k1 == j2:
522 non_adjacent.append((i1, j1, k1))
523 i1, j1, k1 = i2, j2, k2
525 non_adjacent.append((i1, j
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
H A Dsortperf.py100 i1 = random.randrange(n)
102 L[i1], L[i2] = L[i2], L[i1]
H A Dtest_generators.py1252 i1, j1 = self.index2coords(i)
1253 d = (i1 - vmid)**2 + (j1 - hmid)**2
1317 i1, j1 = self.index2coords(i)
1318 squares[i1][j1] = format % k
H A Dtest_repr.py115 i1 = ClassWithRepr("a")
116 eq(r(i1), repr(i1))
H A Dmapping_tests.py210 i1 = d.items()
216 i1.sort(key=safe_sort_key)
218 self.assertEqual(i1, i2)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
H A Dsortperf.py100 i1 = random.randrange(n)
102 L[i1], L[i2] = L[i2], L[i1]
H A Dtest_generators.py1252 i1, j1 = self.index2coords(i)
1253 d = (i1 - vmid)**2 + (j1 - hmid)**2
1317 i1, j1 = self.index2coords(i)
1318 squares[i1][j1] = format % k
H A Dtest_repr.py115 i1 = ClassWithRepr("a")
116 eq(r(i1), repr(i1))
H A Dmapping_tests.py210 i1 = d.items()
216 i1.sort(key=safe_sort_key)
218 self.assertEqual(i1, i2)
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/
H A Dabstract.h1093 PyAPI_FUNC(PyObject *) PySequence_GetSlice(PyObject *o, Py_ssize_t i1, Py_ssize_t i2);
1096 Return the slice of sequence object o between i1 and i2, or
1098 expression: o[i1:i2].
1119 PyAPI_FUNC(int) PySequence_SetSlice(PyObject *o, Py_ssize_t i1, Py_ssize_t i2,
1124 object, o, from i1 to i2. Returns -1 on failure. This is the
1125 equivalent of the Python statement: o[i1:i2]=v.
1128 PyAPI_FUNC(int) PySequence_DelSlice(PyObject *o, Py_ssize_t i1, Py_ssize_t i2);
1131 Delete the slice in sequence object, o, from i1 to i2.
1133 statement: del o[i1:i2].
/prebuilts/python/linux-x86/2.7.5/include/python2.7/
H A Dabstract.h1093 PyAPI_FUNC(PyObject *) PySequence_GetSlice(PyObject *o, Py_ssize_t i1, Py_ssize_t i2);
1096 Return the slice of sequence object o between i1 and i2, or
1098 expression: o[i1:i2].
1119 PyAPI_FUNC(int) PySequence_SetSlice(PyObject *o, Py_ssize_t i1, Py_ssize_t i2,
1124 object, o, from i1 to i2. Returns -1 on failure. This is the
1125 equivalent of the Python statement: o[i1:i2]=v.
1128 PyAPI_FUNC(int) PySequence_DelSlice(PyObject *o, Py_ssize_t i1, Py_ssize_t i2);
1131 Delete the slice in sequence object, o, from i1 to i2.
1133 statement: del o[i1:i2].
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
H A DTkdnd.py312 i1 = Icon("ICON1")
315 i1.attach(t1.canvas)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
H A DTkdnd.py312 i1 = Icon("ICON1")
315 i1.attach(t1.canvas)
/prebuilts/tools/common/m2/internal/org/apache/ant/ant-launcher/1.8.0/
H A Dant-launcher-1.8.0.jar ... String) throws java.io.UnsupportedEncodingException int i2 int i1 char c2 char c1 char c String uri java. ...
/prebuilts/sdk/renderscript/clang-include/
H A Demmintrin.h1095 _mm_set_epi32(int i3, int i2, int i1, int i0) argument
1097 return (__m128i)(__v4si){ i0, i1, i2, i3};
1149 _mm_setr_epi32(int i0, int i1, int i2, int i3) argument
1151 return (__m128i)(__v4si){ i0, i1, i2, i3};
/prebuilts/devtools/tools/lib/
H A Dhttpcore-4.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/message/ ...
/prebuilts/tools/common/http-client/
H A Dhttpcore-4.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/message/ ...
/prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpcore/4.1/
H A Dhttpcore-4.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/message/ ...

Completed in 510 milliseconds

123