Searched defs:at (Results 1 - 25 of 240) sorted by last modified time

12345678910

/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/yaffs2/yaffs2/
H A Ddevextras.h168 struct list_head *at = head->next; local
173 last->next = at;
174 at->prev = last;
/external/valgrind/main/VEX/
H A Dtest_main.c16 License, or (at your option) any later version.
504 License, or (at your option) any later version.
1271 IRAtom* at; local
1274 at = mkPCastTo(mce, Ity_I32, va1);
1275 at = mkUifU(mce, Ity_I32, at, mkPCastTo(mce, Ity_I32, va2));
1276 at = mkPCastTo(mce, finalVty, at);
1277 return at;
1378 static IRAtom* mkPCast8x16 ( MCEnv* mce, IRAtom* at )
1438 IRAtom* at; local
1449 IRAtom* at; local
1458 IRAtom* at; local
1471 IRAtom* at; local
1484 IRAtom* at; local
1495 IRAtom* at; local
1504 IRAtom* at; local
1517 IRAtom* at; local
1580 IRAtom* at; local
1589 IRAtom* at; local
1598 IRAtom* at; local
1607 IRAtom* at; local
[all...]
/external/valgrind/main/memcheck/
H A Dmc_translate.c17 License, or (at your option) any later version.
181 type of each tmp. If you want to know the type, look at the
182 relevant entry in sb->tyenv. It follows that at all times
190 "typeOfIRExpr(mce->bb->tyenv, ...)" at various places in the
446 the type merely by inspecting 'e'. So at least use that fact to
1134 |guard| evaluates to True at run-time. If it evaluates to False
1292 True at run-time. Do the update by setting the orig->shadow
1509 IRAtom* at; local
1522 at = mkUifU(mce, Ity_I64, va1, va2);
1523 at
1558 IRAtom* at; local
1692 IRAtom* at; local
2110 IRAtom* at; local
2121 IRAtom* at; local
2130 IRAtom* at; local
2143 IRAtom* at; local
2156 IRAtom* at; local
2167 IRAtom* at; local
2176 IRAtom* at; local
2189 IRAtom* at; local
2202 IRAtom* at; local
2213 IRAtom* at; local
2224 IRAtom* at; local
2235 IRAtom* at; local
2246 IRAtom* at; local
2257 IRAtom* at; local
2531 IRAtom* at; local
2540 IRAtom* at; local
2549 IRAtom* at; local
2558 IRAtom* at; local
2569 IRAtom* at; local
2578 IRAtom* at; local
2587 IRAtom* at; local
2596 IRAtom* at; local
2607 IRAtom* at; local
2616 IRAtom* at; local
2625 IRAtom* at; local
2634 IRAtom* at; local
2645 IRAtom* at; local
2654 IRAtom* at; local
3459 IRAtom* at; local
3469 IRAtom* at; local
3479 IRAtom* at; local
[all...]
/external/tinyxml/
H A Dtinystr.h146 const char& at (size_type index) const function in class:TiXmlString
/external/tcpdump/
H A Dprint-pim.c316 * auto-RP is a cisco protocol, documented at
520 pimv2_addr_print(const u_char *bp, enum pimv2_addrtype at, int silent) argument
565 switch (at) {
599 if (at == pimv2_group) {
/external/stlport/src/
H A Dcxa.c45 void (*at)(void); member in union:exit_function::__anon31240
/external/stlport/stlport/stl/
H A D_bvector.h16 * or implied. Any use is at your own risk.
502 reference at(size_type __n) function in class:__BVECTOR_QUALIFIED
504 const_reference at(size_type __n) const function in class:__BVECTOR_QUALIFIED
H A D_deque.h16 * or implied. Any use is at your own risk.
453 reference at(size_type __n) function in class:deque
455 const_reference at(size_type __n) const function in class:deque
H A D_rope.h13 * or implied. Any use is at your own risk.
288 // The following should be treated as private, at least for now.
424 // But its hard to do anything else at the
617 * on the pointer either at normal exit or if an exception
1141 // Retrieve a character at the indicated position.
1144 // Obtain a pointer to the character at the indicated position.
1603 _CharT at(size_type __pos) const { function in class:rope
2023 reference at(size_type __pos) { function in class:rope
H A D_string.h9 * or implied. Any use is at your own risk.
68 * First, basic_string always stores a null character at the end;
96 // a block of memory whose size is at least n + 1.
437 const_reference at(size_type __n) const { function in class:basic_string
443 reference at(size_type __n) { function in class:basic_string
H A D_string_sum.h6 * or implied. Any use is at your own risk.
119 const_reference at(size_type __n) const function in class:__bstr_sum
120 { return _M_get_storage().at(__n); }
H A D_vector.h16 * or implied. Any use is at your own risk.
210 reference at(size_type __n) { _M_range_check(__n); return (*this)[__n]; } function in class:vector
211 const_reference at(size_type __n) const { _M_range_check(__n); return (*this)[__n]; } function in class:vector
/external/stlport/stlport/stl/debug/
H A D_string.h9 * or implied. Any use is at your own risk.
230 const_reference at(size_type __n) const { return _M_non_dbg_impl.at(__n); } function in class:basic_string
231 reference at(size_type __n) { return _M_non_dbg_impl.at(__n); } function in class:basic_string
/external/stlport/stlport/stl/pointers/
H A D_deque.h6 * or implied. Any use is at your own risk.
144 reference at(size_type __n) function in class:deque
145 { return cast_traits::to_value_type_ref(_M_impl.at(__n)); }
146 const_reference at(size_type __n) const function in class:deque
147 { return cast_traits::to_value_type_cref(_M_impl.at(__n)); }
H A D_vector.h6 * or implied. Any use is at your own risk.
103 reference at(size_type __n) { return cast_traits::to_value_type_ref(_M_impl.at(__n)); } function in class:vector
104 const_reference at(size_type __n) const { return cast_traits::to_value_type_cref(_M_impl.at(__n)); } function in class:vector
/external/stlport/test/unit/
H A Ddeque_test.cpp2 //into account (at least using GCC 4.0.1)
24 CPPUNIT_TEST(at);
39 void at();
104 //Insertion at end:
137 //Insertion of several elements at end:
157 void DequeTest::at() { function in class:DequeTest
162 CPPUNIT_ASSERT( d.at(0) == 10 );
163 d.at(0) = 20;
164 CPPUNIT_ASSERT( cd.at(0) == 20 );
169 d.at(
[all...]
H A Dvector_test.cpp2 //into account (at least using GCC 4.0.1)
31 CPPUNIT_TEST(at);
54 void at();
313 void VectorTest::at() { function in class:VectorTest
318 CPPUNIT_ASSERT( v.at(0) == 10 );
319 v.at(0) = 20;
320 CPPUNIT_ASSERT( cv.at(0) == 20 );
324 v.at(1) = 20;
/external/srtp/crypto/hash/
H A Dauth.c72 auth_type_get_ref_count(const auth_type_t *at) { argument
73 return at->ref_count;
86 auth_type_self_test(const auth_type_t *at) { argument
87 auth_test_case_t *test_case = at->test_data;
94 at->description);
97 * check to make sure that we have at least one test case, and
111 status = auth_type_alloc(at, &a, test_case->key_length_octets,
150 debug_print(mod_auth, " (mismatch at octet %d)", i);
/external/srtp/crypto/kernel/
H A Dcrypto_kernel.c257 * free dynamic memory used in crypto_kernel at present
323 /* put new_ct at the head of the list */
368 /* put new_at at the head of the list */
452 auth_type_t *at; local
461 at = crypto_kernel_get_auth_type(id);
462 if (!at)
465 return ((at)->alloc(ap, key_len, tag_len));
484 /* put new_dm at the head of the list */
/external/skia/src/core/
H A DSkColorTable.cpp31 SkColorTable::SkColorTable(const SkPMColor colors[], int count, SkAlphaType at) argument
32 : f16BitCache(NULL), fAlphaType(SkToU8(at))
H A DSkDataTable.cpp61 const void* SkDataTable::at(int index, size_t* size) const { function in class:SkDataTable
H A DSkMipMap.cpp127 const SkAlphaType at = src.alphaType(); local
192 dstBM.installPixels(SkImageInfo::Make(width, height, ct, at), addr, rowBytes);
H A DSkPixelRef.cpp267 // Listeners get at most one shot, so whether these triggered or not, blow them away.
281 void SkPixelRef::changeAlphaType(SkAlphaType at) { argument
282 *const_cast<SkAlphaType*>(&fInfo.fAlphaType) = at;
H A DSkTRefArray.h22 * T entries at the end. We call our constructor, but not the constructors
67 const T& at(int index) const { function in class:SkTRefArray
71 const T& operator[](int index) const { return this->at(index); }

Completed in 413 milliseconds

12345678910