HomeSort by relevance Sort by last modified time
    Searched refs:term (Results 51 - 75 of 299) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/srec/srec/clib/
srec_arb.c 76 return tnode->term.pelid;
182 pfread(&(tnode->term.pelid), sizeof(asr_int16_t), 1, fp);
398 if (node->term.pelid < tree_topo->low_pel_no)
400 tree_topo->low_pel_no = node->term.pelid;
401 tree_topo->low_genone_no = node->term.pelid;
403 if (node->term.pelid > tree_topo->high_pel_no)
405 tree_topo->high_pel_no = node->term.pelid;
406 tree_topo->high_genone_no = node->term.pelid;
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
value.c 161 * and symrec term pairs (where both symrecs are in the same
178 /* First look for an (-1*symrec) term */
213 /* Look for the same symrec term; even if both are external,
244 /* Now look for a unused symrec term in the same segment */
475 int term; local
486 for (term=value->abs->numterms-1; term>=0; term--) {
487 if (value->abs->terms[term].type == YASM_EXPR_INT &&
488 yasm_intnum_compare(value->abs->terms[term].data.intn
    [all...]
  /external/chromium/base/
string_split.cc 133 const STR term = str.substr(begin_index); local
135 TrimWhitespace(term, TRIM_ALL, &tmp);
139 const STR term = str.substr(begin_index, end_index - begin_index); local
141 TrimWhitespace(term, TRIM_ALL, &tmp);
  /external/chromium_org/base/strings/
string_split.cc 124 const STR term = str.substr(begin_index); local
126 TrimWhitespace(term, TRIM_ALL, &tmp);
130 const STR term = str.substr(begin_index, end_index - begin_index); local
132 TrimWhitespace(term, TRIM_ALL, &tmp);
  /external/chromium_org/ppapi/cpp/private/
pdf.h 45 const unsigned short* term,
pdf.cc 100 const unsigned short* term,
106 term, case_sensitive, results, count);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
texenv.c 175 /** Set an RGB or A combiner source term */
181 GLuint term; local
185 * Translate pname to (term, alpha).
194 term = pname - GL_SOURCE0_RGB;
201 term = pname - GL_SOURCE0_ALPHA;
209 if ((term == 3) && (ctx->API != API_OPENGL
215 assert(term < MAX_COMBINER_TERMS);
218 * Error-check param (the source term)
259 texUnit->Combine.SourceA[term] = param;
261 texUnit->Combine.SourceRGB[term] = param
271 GLuint term; local
    [all...]
  /external/mesa3d/src/mesa/main/
texenv.c 175 /** Set an RGB or A combiner source term */
181 GLuint term; local
185 * Translate pname to (term, alpha).
194 term = pname - GL_SOURCE0_RGB;
201 term = pname - GL_SOURCE0_ALPHA;
209 if ((term == 3) && (ctx->API != API_OPENGL
215 assert(term < MAX_COMBINER_TERMS);
218 * Error-check param (the source term)
259 texUnit->Combine.SourceA[term] = param;
261 texUnit->Combine.SourceRGB[term] = param
271 GLuint term; local
    [all...]
  /external/srec/seti/sltsEngine/include/
SWIslts.h 61 SWIsltsResult (*term) (void); member in struct:SWIsltsWrapper
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
graminit.h 62 #define term 315 macro
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
symbol.py 72 term = 315 variable
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
graminit.h 62 #define term 315 macro
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
symbol.py 72 term = 315 variable
  /external/chromium_org/chrome/browser/history/
scored_history_match_unittest.cc 46 String16Vector Make1Term(const char* term) const;
50 // term match and word break information automatically that are needed
51 // to call GetTopicalityScore(). It only works for scoring a single term,
53 float GetTopicalityScoreOfTermAgainstURLAndTitle(const string16& term,
80 String16Vector ScoredHistoryMatchTest::Make1Term(const char* term) const {
82 original_terms.push_back(ASCIIToUTF16(term));
95 const string16& term,
98 TermMatches url_matches = MatchTermInString(term, url, 0);
99 TermMatches title_matches = MatchTermInString(term, title, 0);
168 // Test that a result with only a mid-term match (i.e., not at a wor
    [all...]
url_index_private_data.cc 187 search_term_cache_.clear(); // Invalidate the term cache.
266 search_term_cache_.clear(); // Invalidate the term cache.
517 // set for each term, and intersect each to get a final candidate list.
518 // Note that a single 'term' from the user's perspective might be
550 const string16& term) {
551 if (term.empty())
558 size_t term_length = term.length();
561 // See if this term or a prefix thereof is present in the cache.
565 if (StartsWith(term, cache_iter->first, false) &&
574 string16 leftovers(term);
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
ParseRDF.java 153 * term.
195 * anything other than an RDF term. The rdf:ID and rdf:nodeID attributes are simply ignored,
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
aetypes.py 221 def __init__(self, logc, term):
223 self.term = term
226 return "Logical(%r, %r)" % (self.logc, self.term)
229 if type(self.term) == ListType and len(self.term) == 2:
230 return "%s %s %s" % (nice(self.term[0]),
232 nice(self.term[1]))
234 return "%s(%s)" % (string.strip(self.logc), nice(self.term))
237 return pack({'logc': mkenum(self.logc), 'term': self.term}, 'logi'
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_util.cpp 41 if (rem == term)
53 assert(term != &dest.head);
54 assert(pos != term);
72 if (pos == term)
73 term = ins;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.lucene.analysis_1.9.1.v20100518-1140.jar 
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_util.cpp 41 if (rem == term)
53 assert(term != &dest.head);
54 assert(pos != term);
72 if (pos == term)
73 term = ins;
  /external/chromium/chrome/browser/history/
url_database.cc 384 "lower_term LONGVARCHAR NOT NULL," // The search term, in lower case.
385 "term LONGVARCHAR NOT NULL)")) // The actual search term.
408 const string16& term) {
409 DCHECK(url_id && keyword_id && !term.empty());
412 "SELECT term FROM keyword_search_terms "
419 return true; // Term already exists, no need to add it.
422 "INSERT INTO keyword_search_terms (keyword_id, url_id, lower_term, term) "
429 statement.BindString16(2, l10n_util::ToLower(term));
430 statement.BindString16(3, term);
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io_test/
kernel_wrap_test.cc 271 struct termios term; local
272 EXPECT_CALL(mock, tcgetattr(DUMMY_FD, &term)).Times(1);
273 tcgetattr(DUMMY_FD, &term);
277 struct termios term; local
278 EXPECT_CALL(mock, tcsetattr(DUMMY_FD, 0, &term)).Times(1);
279 tcsetattr(DUMMY_FD, 0, &term);
  /external/chromium/chrome/browser/search_engines/
template_url_model_test_util.cc 97 const string16& term) {
98 search_term_ = term;
  /external/chromium/testing/gtest/test/
gtest_color_test.py 56 def UsesColor(term, color_env_var, color_flag):
59 SetEnvVar('TERM', term)
  /external/chromium_org/ppapi/api/private/finish_writing_these/
ppb_pdf.idl 109 [in] mem_t term,

Completed in 2327 milliseconds

1 23 4 5 6 7 8 91011>>