Searched defs:at (Results 51 - 75 of 240) sorted by relevance

12345678910

/external/compiler-rt/test/builtins/Unit/
H A Dparityti2_test.c38 twords at; local
39 at.all = a;
41 at.s.high, at.s.low, x, expected);
H A Dpopcountti2_test.c38 twords at; local
39 at.all = a;
41 at.s.high, at.s.low, x, expected);
H A Dudivmodti4_test.c30 utwords at; local
31 at.all = a;
45 at.s.high, at.s.low, bt.s.high, bt.s.low, qt.s.high, qt.s.low,
[all...]
/external/skia/include/ports/
H A DSkRemotableFontMgr.h43 const SkFontIdentity& at(int index) const { return fData[index]; } function in class:SkRemotableFontIdentitySet
75 * Returns empty if there are no fonts at the given index.
83 * If there are no available fonts at the given index, the return value's
/external/skia/src/core/
H A DSkColorTable.cpp31 SkColorTable::SkColorTable(const SkPMColor colors[], int count, SkAlphaType at) argument
32 : f16BitCache(NULL), fAlphaType(SkToU8(at))
/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/chromium_org/third_party/WebKit/Source/core/events/
H A DEventPath.h68 NodeEventContext& at(size_t index) { return m_nodeEventContexts[index]; } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/platform/animation/
H A DKeyframeValueList.h78 const AnimationValue* at(size_t i) const { return m_values.at(i).get(); } function in class:blink::KeyframeValueList
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DRefVector.h22 const T& at(size_t i) const { return m_vector.at(i); } function in class:blink::RefVector
23 T& at(size_t i) { return m_vector.at(i); } function in class:blink::RefVector
/external/iproute2/include/linux/tc_act/
H A Dtc_pedit.h21 __u32 at; member in struct:tc_pedit_key
/external/kernel-headers/original/uapi/linux/tc_act/
H A Dtc_pedit.h21 __u32 at; member in struct:tc_pedit_key
/external/llvm/test/MC/AArch64/
H A Darm64-diags.s318 at s1e1r label
319 ; CHECK-ERRORS: error: specified at op requires a register
320 at s1e2r label
321 ; CHECK-ERRORS: error: specified at op requires a register
322 at s1e3r label
323 ; CHECK-ERRORS: error: specified at op requires a register
324 at s1e1w label
325 ; CHECK-ERRORS: error: specified at op requires a register
326 at s1e2w label
327 ; CHECK-ERRORS: error: specified at o
328 at s1e3w label
330 at s1e0r label
332 at s1e0w label
334 at s12e1r label
336 at s12e1w label
338 at s12e0r label
340 at s12e0w label
[all...]
/external/bluetooth/bluedroid/bta/hf_client/
H A Dbta_hf_client_api.c8 * You may obtain a copy of the License at:
265 BTA_API void BTA_HfClientSendAT(UINT16 handle, tBTA_HF_CLIENT_AT_CMD_TYPE at, UINT32 val1, UINT32 val2, const char *str) argument
272 p_buf->uint8_val = at;
/external/chromium_org/cc/resources/
H A Dbitmap_skpicture_content_layer_updater.cc26 SkAlphaType at = local
29 source_rect.width(), source_rect.height(), kN32_SkColorType, at));
/external/chromium_org/google_apis/gaia/
H A Dgaia_auth_util.cc25 char at = '@'; local
26 base::SplitString(email_address, at, &parts);
38 std::string new_email = base::StringToLowerASCII(JoinString(parts, at));
/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
H A DInsertionPoint.h64 Node* at(size_t index) const { return m_distribution.at(index).get(); } function in class:blink::InsertionPoint
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DConsoleMessageStorage.cpp82 ConsoleMessage* ConsoleMessageStorage::at(size_t index) const function in class:blink::ConsoleMessageStorage
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebString.cpp62 WebUChar WebString::at(unsigned i) const function in class:blink::WebString
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DSuffixTree.h61 current = current->at(Codebook::codeWord(query[i]));
81 Node* child = m_children.at(i);
87 Node*& at(int codeWord) { return m_children.at(codeWord); } function in class:blink::SuffixTree::Node
103 Node*& child = current->at(Codebook::codeWord(text[base + offset]));
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dstreamcollection.h58 virtual MediaStreamInterface* at(size_t index) { function in class:webrtc::StreamCollection
59 return media_streams_.at(index);
/external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
H A Dtinystr.h147 const char& at (size_type index) const function in class:TiXmlString
/external/chromium_org/third_party/skia/src/core/
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); }
/external/clang/test/SemaCXX/
H A Dconstexpr-nqueens.cpp29 constexpr bool at(int Row, int Col) { function in struct:Board
60 *p == 'o' ? at(Row, Col) && check(p+1, Row, Col+1) :
61 *p == '-' ? !at(Row, Col) && check(p+1, Row, Col+1) :
/external/e2fsprogs/lib/blkid/
H A Dlist.h132 struct list_head *at = head->next; local
137 last->next = at;
138 at->prev = last;
/external/e2fsprogs/lib/ext2fs/
H A Dkernel-list.h53 * Insert a new entry at the tail
93 struct list_head *at = head->next; local
98 last->next = at;
99 at->prev = last;

Completed in 2658 milliseconds

12345678910