Searched defs:at (Results 101 - 125 of 187) sorted by relevance

12345678

/external/llvm/include/llvm/MC/
H A DMCAtom.h50 /// \brief Splits the atom in two at a given address.
51 /// \param SplitPt Address at which to start a new atom, splitting this one.
52 /// \returns The newly created atom starting at \p SplitPt.
63 /// at what the atom contains: section or symbol name, BB start address, ..
87 /// \brief Remap the atom to prepare for a truncation at TruncPt.
95 /// \brief Remap the atom to prepare for a split at SplitPt.
140 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/skia/src/core/
H A DSkDataTable.cpp64 const void* SkDataTable::at(int index, size_t* size) const { function in class:SkDataTable
/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.cc102 const std::string& at,
107 : access_token(at),
101 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/v8/src/
H A Darguments.h59 template <class S> Handle<S> at(int index) { function in class:v8::internal::BASE_EMBEDDED
H A Dhydrogen-bch.cc83 block()->dominated_blocks()->at(current_dominated_block_) : NULL;
107 Element* at(int index) { return &(elements_.at(index)); } function in class:v8::internal::BASE_EMBEDDED
108 Element* at(HBasicBlock* block) { return at(block->block_id()); } function in class:v8::internal::BASE_EMBEDDED
111 at(block->block_id())->set_has_check();
120 at(i)->InitializeLoop(data);
137 * semantics as performing it at every loop iteration, which could cause
145 at(i)->ResetCurrentDominatedBlock();
153 if (at(curren
[all...]
H A Dmksnapshot.cc115 fprintf(fp, "%u", static_cast<unsigned char>(at(j)));
118 char at(int i) { return data_[i]; } function in class:PartialSnapshotSink
302 fprintf(stderr, "%s at line %d\n", *message_string, message->GetLineNumber());
397 // If we don't do this then we end up with a stray root pointing at the
/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/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
H A DNoiseGenerator.java697 float u = NoiseMath.at(rx0, ry0, rz0, q);
699 float v = NoiseMath.at(rx1, ry0, rz0, q);
703 u = NoiseMath.at(rx0, ry1, rz0, q);
705 v = NoiseMath.at(rx1, ry1, rz0, q);
711 u = NoiseMath.at(rx0, ry0, rz1, q);
713 v = NoiseMath.at(rx1, ry0, rz1, q);
717 u = NoiseMath.at(rx0, ry1, rz1, q);
719 v = NoiseMath.at(rx1, ry1, rz1, q);
785 * 'S' at the end) and the other Unsigned value.
834 public static float at(floa method in class:NoiseGenerator.NoiseMath
[all...]
/external/tcpdump/
H A Dprint-pim.c320 * 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/v8/src/
H A Dmksnapshot.cc112 fprintf(fp, "%u", static_cast<unsigned char>(at(j)));
115 char at(int i) { return data_[i]; } function in class:PartialSnapshotSink
313 // If we don't do this then we end up with a stray root pointing at the
/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...]
H A DNodeSetDTM.java8 * You may obtain a copy of the License at
499 * @return The node at the <code>index</code>th position in the
545 * Insert a node at a given position.
548 * @param pos Offset at which the node is to be inserted,
903 * Inserts the specified node in this vector at the specified index.
909 * @param at The index where the insert should occur.
913 public void insertElementAt(int value, int at) argument
919 super.insertElementAt(value, at);
939 * Inserts the specified node in this vector at the specified index.
978 * Deletes the component at th
[all...]
/external/chromium/googleurl/src/
H A Durl_canon.h66 // Accessor for returning a character at a given position. The input offset
68 inline char at(int offset) const { function in class:url_canon::CanonOutputT
72 // Sets the character at the given position. The given position MUST be less
86 // write many characters at once, it can make sure there is enough capacity,
123 // Grow the buffer to hold at least one more item. Hopefully we won't have
145 // Grows the given buffer so that it can fit at least |min_additional|
266 // the output is empty. The beginning of the host will be at offset 0, and
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DVector.h7 * version 2 of the License, or (at your option) any later version.
535 T& at(size_t i) function in class:WTF::Vector
540 const T& at(size_t i) const
546 T& operator[](size_t i) { return at(i); }
547 const T& operator[](size_t i) const { return at(i); }
562 T& first() { return at(0); }
563 const T& first() const { return at(0); }
564 T& last() { return at(size() - 1); }
565 const T& last() const { return at(size() - 1); }
1059 std::swap(at(
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/bn/
H A Dbn_gf2m.c232 const BIGNUM *at, *bt; local
237 if (a->top < b->top) { at = b; bt = a; }
238 else { at = a; bt = b; }
240 if(bn_wexpand(r, at->top) == NULL)
245 r->d[i] = at->d[i] ^ bt->d[i];
247 for (; i < at->top; i++)
249 r->d[i] = at->d[i];
252 r->top = at->top;
/external/chromium_org/url/
H A Durl_canon.h42 // Accessor for returning a character at a given position. The input offset
44 inline char at(int offset) const { function in class:url_canon::CanonOutputT
48 // Sets the character at the given position. The given position MUST be less
62 // write many characters at once, it can make sure there is enough capacity,
99 // Grow the buffer to hold at least one more item. Hopefully we won't have
121 // Grows the given buffer so that it can fit at least |min_additional|
244 // the output is empty. The beginning of the host will be at offset 0, and
/external/clang/include/clang/AST/
H A DCanonicalType.h101 /// // look at Ptr's pointee type
158 /// \brief Determines whether this canonical type is at least as qualified as
704 ArrayType_cannot_be_used_with_getAs<U> at; local
705 (void)at;
719 ArrayType_cannot_be_used_with_getAs<U> at; local
720 (void)at;
/external/kernel-headers/original/linux/
H A Dlist.h311 struct list_head *at = head->next; local
316 last->next = at;
317 at->prev = last;
336 * The list at @list is reinitialised

Completed in 5568 milliseconds

12345678