Searched defs:at (Results 126 - 150 of 240) sorted by relevance

12345678910

/external/eigen/Eigen/src/SparseCore/
H A DCompressedStorage.h8 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
140 /** \returns the stored value at index \a key
142 inline Scalar at(Index key, const Scalar& defaultValue = Scalar(0)) const function in class:Eigen::internal::CompressedStorage
154 /** Like at(), but the search is performed in the range [start,end) */
167 /** \returns a reference to the value at index \a key
/external/kernel-headers/original/uapi/linux/caif/
H A Dcaif_socket.h111 * @u.at: Applies when family = CAIFPROTO_AT.
113 * @u.at.type: Type of AT link to set up (enum caif_at_type).
146 } at; /* CAIFPROTO_AT */ member in union:sockaddr_caif::__anon22896
/external/libcxx/test/support/
H A Dnasty_containers.hpp75 reference at(size_type n) { return v_.at(n); } function in class:nasty_vector
76 const_reference at(size_type n) const { return v_.at(n); } function in class:nasty_vector
/external/llvm/include/llvm/MC/MCAnalysis/
H A DMCAtom.h52 /// \brief Splits the atom in two at a given address.
53 /// \param SplitPt Address at which to start a new atom, splitting this one.
54 /// \returns The newly created atom starting at \p SplitPt.
65 /// at what the atom contains: section or symbol name, BB start address, ..
89 /// \brief Remap the atom to prepare for a truncation at TruncPt.
97 /// \brief Remap the atom to prepare for a split at SplitPt.
142 const MCDecodedInst &at(size_t n) const { return Insts.at(n); } function in class:llvm::MCTextAtom
/external/openssl/apps/
H A Dasn1pars.c20 * This can be in the form of a textual message at program startup or
100 ASN1_TYPE *at=NULL; local
321 atmp = at;
323 at = d2i_ASN1_TYPE(NULL,&ctmpbuf,tmplen);
325 if(!at)
331 typ = ASN1_TYPE_get(at);
341 tmpbuf=at->value.asn1_string->data;
342 tmplen=at->value.asn1_string->length;
380 if (at != NULL) ASN1_TYPE_free(at);
[all...]
/external/openssl/crypto/x509/
H A Dx509_req.c20 * This can be in the form of a textual message at program startup or
158 * extensions in a certificate request. There are at least two OIDs that are
221 ASN1_TYPE *at = NULL; local
223 if(!(at = ASN1_TYPE_new()) ||
224 !(at->value.sequence = ASN1_STRING_new())) goto err;
226 at->type = V_ASN1_SEQUENCE;
228 at->value.sequence->length =
230 &at->value.sequence->data,
234 if(!sk_ASN1_TYPE_push(attr->value.set, at)) goto err;
235 at
[all...]
/external/qemu/distrib/libsparse/src/
H A Dsparse_read.c6 * You may obtain a copy of the License at
56 char *at = ""; local
69 at = malloc(size + 1);
70 if (at == NULL) {
75 vsnprintf(at, size, fmt, argp);
77 at[size] = 0;
78 s = " at ";
83 sparse_print_verbose("EOF while reading file%s%s\n", s, at);
87 sparse_print_verbose("Invalid sparse file format%s%s\n", s, at);
90 s, at);
[all...]
/external/skia/include/core/
H A DSkImageInfo.h54 static inline bool SkAlphaTypeIsOpaque(SkAlphaType at) { argument
59 return (unsigned)at <= kOpaque_SkAlphaType;
131 static SkImageInfo Make(int width, int height, SkColorType ct, SkAlphaType at) { argument
133 width, height, ct, at
141 static SkImageInfo MakeN32(int width, int height, SkAlphaType at) { argument
143 width, height, kN32_SkColorType, at
/external/skia/src/core/
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;
/external/skia/src/utils/mac/
H A DSkCreateCGImageRef.cpp12 static CGBitmapInfo ComputeCGAlphaInfo_RGBA(SkAlphaType at) { argument
14 switch (at) {
29 static CGBitmapInfo ComputeCGAlphaInfo_BGRA(SkAlphaType at) { argument
31 switch (at) {
/external/stlport/stlport/stl/pointers/
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
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)); }
/external/stlport/test/unit/
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/yaffs2/yaffs2/
H A Ddevextras.h168 struct list_head *at = head->next; local
173 last->next = at;
174 at->prev = last;
/external/chromium_org/google_apis/gaia/
H A Doauth2_mint_token_flow.cc101 const std::string& at,
106 : access_token(at),
100 Parameters( const std::string& at, const std::string& eid, const std::string& cid, const std::vector<std::string>& scopes_arg, Mode mode_arg) argument
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSBasicShapes.cpp46 char at[] = "at"; local
56 result.append(at);
149 char at[] = "at"; local
168 result.appendLiteral(at);
281 points.append(m_values.at(i)->cssText());
/external/chromium_org/third_party/skia/bench/
H A DBitmapBench.cpp86 BitmapBench(SkColorType ct, SkAlphaType at, bool forceUpdate = false, bool isVolatile = false) argument
88 , fAlphaType(at)
194 FilterBitmapBench(SkColorType ct, SkAlphaType at, argument
196 : INHERITED(ct, at, forceUpdate, isVolitile)
/external/chromium_org/v8/src/
H A Dhydrogen-bch.cc60 block()->dominated_blocks()->at(current_dominated_block_) : NULL;
85 Element* at(int index) const { return &(elements_.at(index)); } function in class:v8::internal::BASE_EMBEDDED
86 Element* at(HBasicBlock* block) const { return at(block->block_id()); } function in class:v8::internal::BASE_EMBEDDED
89 at(block->block_id())->set_has_check();
98 at(i)->InitializeLoop(data);
115 * semantics as performing it at every loop iteration, which could cause
123 at(i)->ResetCurrentDominatedBlock();
131 if (at(curren
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DArrayTable.java6 * You may obtain a copy of the License at
65 * lists of allowed keys and values. See the {@link #at}, {@link #set}, {@link
224 public V at(int rowIndex, int columnIndex) { method in class:ArrayTable
/external/iptables/libiptc/
H A Dlinux_list.h20 * Check at compile time that something is of a particular type.
288 struct list_head *at = head->next; local
293 last->next = at;
294 at->prev = last;
313 * The list at @list is reinitialised
/external/pdfium/core/src/fxge/agg/agg23/
H A Dagg_array.h68 const T& at(unsigned i) const function in class:agg::pod_array
72 T& at(unsigned i) function in class:agg::pod_array
218 const T& at(unsigned i) const function in class:agg::pod_deque
222 T& at(unsigned i) function in class:agg::pod_deque
/external/skia/bench/
H A DBitmapBench.cpp86 BitmapBench(SkColorType ct, SkAlphaType at, bool forceUpdate = false, bool isVolatile = false) argument
88 , fAlphaType(at)
196 FilterBitmapBench(SkColorType ct, SkAlphaType at, argument
198 : INHERITED(ct, at, forceUpdate, isVolitile)
/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/apache-xml/src/main/java/org/apache/xpath/
H A DNodeSet.java8 * You may obtain a copy of the License at
343 * @return The node at the <code>index</code>th position in the
389 * Insert a node at a given position.
392 * @param pos Offset at which the node is to be inserted,
724 * fetch will take place at index 1.
943 * @return the node at the tail of the vector
985 * Return the node at the top of the stack without popping the stack.
989 * @return Node at the top of the stack or null if stack is empty.
1050 * @param n Node to set at the tail of vector
1070 * Return the node at th
1102 insertElementAt(Node value, int at) argument
[all...]

Completed in 4728 milliseconds

12345678910