HomeSort by relevance Sort by last modified time
    Searched defs:at (Results 101 - 125 of 695) sorted by null

1 2 3 45 6 7 8 91011>>

  /dalvik/dx/src/com/android/dx/dex/file/
AnnotationSetItem.java 6 * You may obtain a copy of the License at
56 int at = 0; local
58 items[at] = new AnnotationItem(a, dexFile);
59 at++;
70 // This includes an int size at the start of the list.
  /dalvik/dx/src/com/android/dx/util/
HexParser.java 6 * You may obtain a copy of the License at
47 int at = 0; local
50 while (at < len) {
51 int nlAt = src.indexOf('\n', at);
55 int poundAt = src.indexOf('#', at);
59 line = src.substring(at, poundAt);
61 line = src.substring(at, nlAt);
63 at = nlAt + 1;
FixedSizeList.java 6 * You may obtain a copy of the License at
149 int at = 0; local
154 newa[at] = one;
155 at++;
204 * Sets the element at the given index, but without doing any type
  /external/boringssl/src/crypto/x509/
t_req.c 19 * This can be in the form of a textual message at program startup or
172 const ASN1_TYPE *at = X509_ATTRIBUTE_get0_type(a, j); local
173 const int type = at->type;
174 ASN1_BIT_STRING *bs = at->value.asn1_string;
x509_att.c 20 * This can be in the form of a textual message at program startup or
204 X509_ATTRIBUTE *at; local
210 at = X509at_get_attr(x, i);
211 if (lastpos <= -3 && (X509_ATTRIBUTE_count(at) != 1))
213 return X509_ATTRIBUTE_get0_data(at, 0, type, NULL);
314 * This is a bit naughty because the attribute should really have at
x509_req.c 20 * This can be in the form of a textual message at program startup or
153 * extensions in a certificate request. There are at least two OIDs that are
220 ASN1_TYPE *at = NULL; local
222 if (!(at = ASN1_TYPE_new()) || !(at->value.sequence = ASN1_STRING_new()))
225 at->type = V_ASN1_SEQUENCE;
227 at->value.sequence->length =
229 &at->value.sequence->data,
235 if (!sk_ASN1_TYPE_push(attr->value.set, at))
237 at = NULL
    [all...]
  /external/c-ares/
ares_parse_a_reply.c 161 struct ares_addrttl * const at = &addrttls[naddrs]; local
168 memcpy(&at->ipaddr, aptr, sizeof(struct in_addr));
169 at->ttl = rr_ttl;
ares_parse_aaaa_reply.c 161 struct ares_addr6ttl * const at = &addrttls[naddrs]; local
168 memcpy(&at->ip6addr, aptr, sizeof(struct ares_in6_addr));
169 at->ttl = rr_ttl;
  /external/e2fsprogs/lib/blkid/
list.h 132 struct list_head *at = head->next; local
137 last->next = at;
138 at->prev = last;
  /external/kernel-headers/original/uapi/linux/tc_act/
tc_pedit.h 22 __u32 at; member in struct:tc_pedit_key
  /external/libmojo/mojo/public/cpp/bindings/lib/
array_internal.h 328 Ref at(size_t offset) { function in class:mojo::internal::Array_Data
333 ConstRef at(size_t offset) const {
  /external/smali/util/src/main/java/org/jf/util/
Utf8Utils.java 6 * You may obtain a copy of the License at
93 for (int at = start; length > 0; /*at*/) {
94 int v0 = bytes[at] & 0xFF;
103 return throwBadUtf8(v0, at);
106 at++;
113 return throwBadUtf8(v0, at);
115 int v1 = bytes[at + 1] & 0xFF;
117 return throwBadUtf8(v1, at + 1);
125 return throwBadUtf8(v1, at + 1)
200 int at = 0; local
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
Path.cpp 239 const char* at = path; local
240 const char* delim = strchr(at, PathSeparator);
243 std::string tmp(at, size_t(delim-at));
247 at = delim + 1;
248 delim = strchr(at, PathSeparator);
251 if (*at != 0)
252 if (tmpPath.set(std::string(at)))
283 // There is at least one slash left. Remove all trailing non-slashes.
  /external/v8/src/
arguments.h 44 template <class S> Handle<S> at(int index) { function in class:v8::internal::BASE_EMBEDDED
  /frameworks/base/core/tests/coretests/src/android/text/
PackedIntVectorTest.java 6 * You may obtain a copy of the License at
46 int at; local
49 at = i;
51 at = p.size() - i;
59 p.insertAt(at, null);
61 p.insertAt(at, ins);
68 assertEquals(0, p.getValue(at, j));
70 assertEquals(p.getValue(at, j), i + j);
145 int at = (osize - del) / 2; local
146 p.deleteAt(at, del)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
PositionList.java 6 * You may obtain a copy of the License at
78 int at = 0; local
99 arr[at] = new PositionList.Entry(insn.getAddress(), pos);
100 at++;
105 PositionList result = new PositionList(at);
106 for (int i = 0; i < at; i++) {
124 * Gets the element at the given index. It is an error to call
129 * @return {@code non-null;} element at that index
136 * Sets the entry at the given index.
139 * @param entry {@code non-null;} the entry to set at {@code n
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
FixedSizeList.java 6 * You may obtain a copy of the License at
149 int at = 0; local
154 newa[at] = one;
155 at++;
204 * Sets the element at the given index, but without doing any type
  /dalvik/dx/src/com/android/dx/cf/code/
SwitchList.java 6 * You may obtain a copy of the License at
81 * Gets the indicated target. Asking for the target at {@code size()}
102 * Gets the list of all targets. This includes one extra element at the
173 int at = 0; local
178 if (i != at) {
179 targets.set(at, target);
180 values.set(at, values.get(i));
182 at++;
186 if (at != sz) {
187 values.shrink(at);
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
AttributeListParser.java 6 * You may obtain a copy of the License at
124 int at = offset + 2; // Skip the count. local
136 observer.parsed(bytes, at, 0,
142 attributeFactory.parse(cf, context, at, observer);
144 at += attrib.byteLength();
149 observer.parsed(bytes, at, 0,
162 endOffset = at;
  /dalvik/dx/src/com/android/dx/dex/code/
PositionList.java 6 * You may obtain a copy of the License at
78 int at = 0; local
99 arr[at] = new PositionList.Entry(insn.getAddress(), pos);
100 at++;
105 PositionList result = new PositionList(at);
106 for (int i = 0; i < at; i++) {
124 * Gets the element at the given index. It is an error to call
129 * @return {@code non-null;} element at that index
136 * Sets the entry at the given index.
139 * @param entry {@code non-null;} the entry to set at {@code n
    [all...]
  /external/aac/libFDK/src/
FDK_trigFcts.cpp 115 * at=atan(0.5 *(2^scl)); % 0.5 because get in 'middle' area of current scale level 'scl'
116 * at/2 % div at by ATO_SCALE
135 FIXP_DBL at; // atan out local
186 at = +f_atan_expand_range[sfo-ATI_SF-1];
188 at = FL2FXCONST_DBL( +M_PI/2 / ATO_SCALE);
193 at = -f_atan_expand_range[sfo-ATI_SF-1];
195 at = FL2FXCONST_DBL( -M_PI/2 / ATO_SCALE);
199 at = FL2FXCONST_DBL( 0.0f );
207 at = fixp_atan(q); // ATO_S
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
streams.rb 51 need a way to record various locations in the input at a number of points in the
96 to a recognizer at look-ahead position specified by <tt>k</tt>. For
102 <tt>stream.look(k = 1)</tt> is used to retrieve the full object of interest at
177 # used to quickly retreive the object of interest to a recognizer at lookahead
184 # used to retreive the full object of interest at lookahead position specified
191 # returns a value to pass to #rewind at a later time
246 Line 1 is the string "Hey this is the first line\\n". If a character stream is at
335 # :method: at( i )
336 # return the stream symbol at index +i+
337 abstract :at
1057 def at( i ) method in class:ANTLR3.that.CommonTokenStream
    [all...]
  /external/blktrace/btt/
list.h 196 struct list_head *at = head->next; local
201 last->next = at;
202 at->prev = last;
  /external/clang/test/CodeGenCXX/
debug-info.cpp 148 typedef a at; typedef in namespace:pr16214
158 at a_inst;
  /external/eigen/Eigen/src/SparseCore/
CompressedStorage.h 8 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
144 /** \returns the stored value at index \a key
146 inline Scalar at(Index key, const Scalar& defaultValue = Scalar(0)) const function in class:Eigen::internal::CompressedStorage
158 /** Like at(), but the search is performed in the range [start,end) */
171 /** \returns a reference to the value at index \a key

Completed in 2481 milliseconds

1 2 3 45 6 7 8 91011>>