Searched refs:first (Results 251 - 275 of 2232) sorted by relevance

<<11121314151617181920>>

/external/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp533 for (typename std::multimap<V, V>::iterator K = PairRange.first;
561 // uses the first.
564 // element of the first pair (to allow for splatting).
756 // The powi intrinsic is special because only the first argument is
864 // stop searching after first use:
870 // J does not use I, and comes before the first use of I, so it can be
922 // the first value...
923 for (Value::use_iterator I = P.first->use_begin(),
924 E = P.first->use_end(); I != E; ++I) {
930 P.first
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DFileWriterTest.java69 String first = "The first string for testing. ";
70 fileWriter.write(first);
79 char[] out = new char[first.length() + second.length() + 10];
82 assertEquals(first + second, new String(out, 0, length));
85 first = "The first string for testing. ";
86 fileWriter.write(first);
95 out = new char[first.length() + second.length() + 10];
/external/dropbear/libtomcrypt/src/pk/ecc/
H A Dltc_ecc_mulmod.c45 int first, bitbuf, bitcpy, bitcnt, mode, digidx; local
113 first = 1;
147 /* if this is the first window we do a simple copy */
148 if (first == 1) {
149 /* R = kG [k = first window] */
153 first = 0;
157 /* double first */
175 /* only double if we have had at least one add first */
176 if (first == 0) {
182 if (first
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DTreeMultimapExplicitTest.java47 public int compare(String first, String second) { argument
48 if (first == second) {
50 } else if (first == null) {
54 } else if (first.length() != second.length()) {
55 return first.length() - second.length();
57 return first.compareTo(second);
186 assertEquals(null, keySet.first());
/external/openfst/src/include/fst/extensions/pdt/
H A Dpdt.h61 paren_map_[p.first] = i;
64 if (min_paren_ == kNoLabel || p.first < min_paren_)
65 min_paren_ = p.first;
69 if (max_paren_ == kNoLabel || p.first > max_paren_)
70 max_paren_ = p.first;
94 if (label == parens_[paren_id].first) { // Open paren.
132 return p.first + p.second * kPrime;
/external/stlport/src/
H A Dios.cpp152 if (tmp.first) { // The allocation, if any, succeeded.
153 _M_iwords = tmp.first;
169 if (tmp.first) { // The allocation, if any, succeeded.
170 _M_pwords = tmp.first;
184 if (tmp.first) {
185 _M_callbacks = tmp.first;
199 event_callback f = _M_callbacks[i-1].first;
H A Dlocale_catalog.cpp183 (*result.first).second.first = create_obj(name, hint, __err_code);
184 if (!(*result.first).second.first) {
185 (*M)->erase(result.first);
197 ++((*result.first).second.second);
199 return (*result.first).second.first;
221 void* cat1 = (*it).second.first;
/external/webkit/Source/JavaScriptCore/parser/
H A DASTBuilder.h539 m_binaryOperandStack.append(std::make_pair(makeBinaryNode(m_binaryOperatorStack.last().first, lhs, rhs), BinaryOpInfo(lhs.second, rhs.second)));
548 ExpressionNode* result = m_binaryOperandStack.last().first;
561 return m_unaryTokenStack.last().first;
817 return new (m_globalData) LogicalOpNode(m_globalData, lhs.first, rhs.first, OpLogicalOr);
820 return new (m_globalData) LogicalOpNode(m_globalData, lhs.first, rhs.first, OpLogicalAnd);
823 return makeBitOrNode(lhs.first, rhs.first, rhs.second.hasAssignment);
826 return makeBitXOrNode(lhs.first, rh
[all...]
/external/chromium/chrome/common/net/gaia/
H A Dgaia_authenticator.cc236 if ("accountType" == i->first) {
239 } else if ("email" == i->first) {
285 // in the first request, or to the sole request that is made to Gaia V2.
306 if (i->first == "SID") {
308 } else if (i->first == "LSID") {
310 } else if (i->first == "Auth") {
324 if (i->first == "Error") {
326 } else if (i->first == "Url") {
328 } else if (i->first == "CaptchaToken") {
330 } else if (i->first
[all...]
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
H A DClassDefinition.java233 boolean first = true;
235 if (!first) {
238 first = false;
266 boolean first = true;
268 if (!first) {
271 first = false;
312 boolean first = true;
314 if (!first) {
317 first = false;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1OutputStream.java174 private boolean first = true; field in class:ASN1OutputStream.ImplicitOutputStream
184 if (first)
186 first = false;
/external/chromium/chrome/browser/chromeos/
H A Dsms_observer.cc44 if (it_observer->first == (*it_network)->device_path()) {
50 VLOG(1) << "Remove SMS monitor for " << it_observer->first;
80 VLOG(1) << "Remove SMS monitor for " << it->first;
/external/chromium/chrome/browser/net/
H A Dreferrer.cc98 least_useful_url = it->first;
110 discarded_urls.push_back(it->first);
150 StringValue* url_spec(new StringValue(it->first.spec()));
/external/chromium/chrome/browser/sync/engine/
H A Ddownload_updates_command.cc50 syncable::ModelType model_type = syncable::ModelTypeFromInt(i->first);
51 enabled_types[i->first] = true;
58 type_payload_map.find(i->first);
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DParameterAnnotationStruct.java131 boolean first = true;
133 if (first) {
134 first = false;
/external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
H A DAnnotations.java135 boolean first = true;
140 if (first) {
141 first = false;
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DBitIntSet.java130 boolean first = true;
134 if (!first) {
137 first = false;
/external/guava/guava/src/com/google/common/collect/
H A DForwardingSortedSet.java71 public E first() { method in class:ForwardingSortedSet
72 return delegate().first();
105 * A sensible definition of {@link #contains} in terms of the {@code first()}
116 Object ceiling = self.tailSet(object).first();
/external/icu4c/test/perf/ubrkperf/
H A Dubrkperf.h64 m_brkIt_->first();
91 m_brkIt_->first();
99 m_brkIt_->first();
/external/iptables/extensions/
H A Dlibxt_TCPOPTSTRIP.c108 bool first = true; local
113 if (!first)
116 first = false;
/external/jdiff/src/jdiff/
H A DMethodAPI.java147 boolean first = true;
150 if (!first)
154 first = false;
/external/linux-tools-perf/util/
H A Dcallchain.h74 struct callchain_cursor_node *first; member in struct:callchain_cursor
114 cursor->last = &cursor->first;
123 cursor->curr = cursor->first;
/external/oauth/core/src/main/java/net/oauth/
H A DConsumerProperties.java82 OAuthConsumer first = pool.get(name);
83 if (first == null) {
90 consumer = first;
/external/openssl/crypto/asn1/
H A Df_enum.c105 int num=0,slen=0,first=1; local
136 if (first)
138 first=0;
H A Df_string.c103 int num=0,slen=0,first=1; local
110 if (first)
115 first=0;

Completed in 4218 milliseconds

<<11121314151617181920>>