Searched defs:term (Results 1 - 25 of 56) sorted by relevance

123

/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/
H A Drun_tests.py34 from _setup import term namespace
93 term.write(
116 term.yellow("---> %s" % (dirname[strip:],))
123 term.yellow("<--- %s" % (dirname[strip:],))
138 term.write = term.green = term.red = term.yellow = \
139 term.announce = \
144 for key in term
[all...]
/external/jacoco/org.jacoco.examples/build/src/main/java/org/jacoco/examples/parser/
H A DExpressionParser.java44 final IExpression e = term();
49 private IExpression term() throws IOException { method in class:ExpressionParser
78 e = term();
/external/ceres-solver/include/ceres/
H A Dgradient_checker.h76 // term->parameter_block_sizes().size(), and each matrix is the
97 // term: The cost function to test. Not retained after this call returns.
106 CostFunctionToProbe *term,
109 CHECK_NOTNULL(term);
119 // Do a consistency check between the term and the template parameters.
120 CHECK_EQ(M, term->num_residuals());
122 const vector<int32>& block_sizes = term->parameter_block_sizes();
176 CHECK(term->Evaluate(probe_point, results->cost.data(),
179 numeric_term(term, DO_NOT_TAKE_OWNERSHIP);
192 LOG(INFO) << "========== term
104 Probe(double const* const* probe_point, double error_tolerance, CostFunctionToProbe *term, GradientCheckResults* results) argument
[all...]
/external/opencv3/samples/python2/
H A Dcalibrate.py53 term = ( cv2.TERM_CRITERIA_EPS + cv2.TERM_CRITERIA_COUNT, 30, 0.1 ) variable
54 cv2.cornerSubPix(img, corners, (5, 5), (-1, -1), term)
/external/toybox/toys/other/
H A Dlogin.c142 char *term = getenv("TERM"); local
145 if (term) setenv("TERM", term, 1);
/external/libchrome/base/strings/
H A Dstring_split.cc146 Piece term = end_index == Piece::npos local
151 term = TrimString(term, WhitespaceForType<Str>(), TRIM_ALL);
153 if (result_type == SPLIT_WANT_ALL || !term.empty())
154 result->push_back(PieceToOutputType<Str, OutputStringType>(term));
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_bld_blend_soa.c102 * Indexes are: factor[src,dst][color,term][r,g,b,a]
108 * Indexes are: term[src,dst][r,g,b,a]
110 LLVMValueRef term[2][4]; member in struct:lp_build_blend_soa_context
123 * Compute src/first term RGB
289 if(j < i && bld.term[k][j])
290 bld.term[k][i] = bld.term[k][j];
292 bld.term[k][i] = lp_build_mul(&bld.base, bld.factor[k][0][i], bld.factor[k][1][i]);
306 bld.term[k][i] = lp_build_mul(&bld.base, bld.factor[k][0][i],
322 bld.term[
[all...]
H A Dlp_test_blend.c244 double *term)
250 term[0] = factor[0]; /* R */
251 term[1] = factor[1]; /* G */
252 term[2] = factor[2]; /* B */
255 term[0] = factor[0] * src[0]; /* R */
256 term[1] = factor[1] * src[1]; /* G */
257 term[2] = factor[2] * src[2]; /* B */
260 term[0] = factor[0] * src[3]; /* R */
261 term[1] = factor[1] * src[3]; /* G */
262 term[
238 compute_blend_ref_term(unsigned rgb_factor, unsigned alpha_factor, const double *factor, const double *src, const double *dst, const double *con, double *term) argument
[all...]
/external/jemalloc/test/include/test/
H A Dmath.h56 double acu, factor, oflo, gin, term, rn, a, b, an, dif; local
74 term = 1.0;
79 term *= x / rn;
80 gin += term;
81 if (term <= acu) {
90 term = 0.0;
100 term += 1.0;
101 an = a * term;
273 /* Calculation of seven-term Taylor series. */
/external/libpcap/
H A Dgrammar.y272 %type <blk> expr id nid pid term rterm qid
338 expr: term
339 | expr and term { gen_and($1.b, $3.b); $$ = $3; }
341 | expr or term { gen_or($1.b, $3.b); $$ = $3; }
421 term: rterm label
422 | not term { gen_not($2.b); $$ = $2; }
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_inlines.h362 bool BasicBlock::reachableBy(const BasicBlock *by, const BasicBlock *term) argument
364 return cfg.reachableBy(&by->cfg, &term->cfg);
H A Dnv50_ir_util.h192 term(head) { }
196 virtual bool end() const { return pos == term; }
208 Item *term; member in class:nv50_ir::DLList::Iterator
/external/mesa3d/src/mesa/main/
H A Dtexenv.c175 /** 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]
271 GLuint term; local
[all...]
/external/mesa3d/src/mesa/swrast/
H A Ds_texcombine.c96 GLuint i, term; local
140 for (term = 0; term < numArgsRGB; term++) {
141 const GLenum srcRGB = combine->SourceRGB[term];
142 const GLenum operandRGB = combine->OperandRGB[term];
146 argRGB[term] = get_texel_array(swrast, unit);
149 argRGB[term] = primary_rgba;
152 argRGB[term] = rgba;
156 float4_array c = ccolor[term];
[all...]
H A Ds_context.c195 GLuint term; local
196 for (term = 0; term < combine->_NumArgsRGB; term++) {
197 if (combine->SourceRGB[term] == GL_PRIMARY_COLOR) {
201 if (combine->SourceA[term] == GL_PRIMARY_COLOR) {
/external/pdfium/xfa/src/fxbarcode/pdf417/
H A DBC_PDF417ECModulusPoly.cpp267 CBC_PDF417ECModulusPoly* term = local
279 delete term;
291 remainder = temp->subtract(term, e);
292 delete term;
/external/skia/platform_tools/android/apps/sample_app/src/main/java/com/skia/
H A DSkiaSampleRenderer.java96 native void term(); method in class:SkiaSampleRenderer
/external/toybox/toys/pending/
H A Dinit.c96 static void add_new_action(uint8_t action,char *command,char *term) argument
103 if (!(strcmp(x->command, command)) && !(strcmp(x->terminal_name, term))) {
117 x->terminal_name = xstrdup(term);
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DParseRDF.java153 * term.
195 * anything other than an RDF term. The rdf:ID and rdf:nodeID attributes are simply ignored,
1204 * @param term the term id
1205 * @return Return true if the term is a property element name.
1207 private static boolean isPropertyElementName(int term) argument
1209 if (term == RDFTERM_DESCRIPTION || isOldTerm(term))
1215 return (!isCoreSyntaxTerm(term));
1224 * @param term th
1227 isOldTerm(int term) argument
1241 isCoreSyntaxTerm(int term) argument
[all...]
/external/autotest/client/deps/fakemodem/src/
H A Dfakemodem.c97 gsize len, term; local
106 while (g_io_channel_read_line (pf, &line, &len, &term, error) ==
109 line[term] = '\0';
145 g_io_channel_read_line (pf, &line, &len, &term, error);
146 line[term] = '\0';
355 gsize term; local
383 status = g_io_channel_read_line (source, &line, NULL, &term, &error);
386 line[term] = '\0';
391 rval = write (masterfd, line, term);
392 assert(term
[all...]
/external/opencv3/3rdparty/libjasper/
H A Djpc_t1enc.c89 jas_matrix_t *flags, jas_matrix_t *data, int term, long *nmsedec);
92 jas_matrix_t *data, int term, long *nmsedec);
95 int, jas_matrix_t *flags, jas_matrix_t *data, int term, long *nmsedec);
98 jas_matrix_t *flags, jas_matrix_t *data, int term, long *nmsedec);
101 jas_matrix_t *flags, jas_matrix_t *data, int term, long *nmsedec);
231 pass->term = JPC_ISTERMINATED(pass - cblk->passes, 0, cblk->numpasses, (tcmpt->cblksty & JPC_COX_TERMALL) != 0, (tcmpt->cblksty & JPC_COX_LAZY) != 0);
235 assert(pass->term == 1);
236 pass->term = 1;
272 if (pass->term) {
305 if (pass->term) {
429 jpc_encsigpass(jpc_mqenc_t *mqenc, int bitpos, int orient, int vcausalflag, jas_matrix_t *flags, jas_matrix_t *data, int term, long *nmsedec) argument
528 jpc_encrawsigpass(jpc_bitstream_t *out, int bitpos, int vcausalflag, jas_matrix_t *flags, jas_matrix_t *data, int term, long *nmsedec) argument
630 jpc_encrefpass(jpc_mqenc_t *mqenc, int bitpos, int vcausalflag, jas_matrix_t *flags, jas_matrix_t *data, int term, long *nmsedec) argument
723 jpc_encrawrefpass(jpc_bitstream_t *out, int bitpos, int vcausalflag, jas_matrix_t *flags, jas_matrix_t *data, int term, long *nmsedec) argument
829 jpc_encclnpass(jpc_mqenc_t *mqenc, int bitpos, int orient, int vcausalflag, int segsymflag, jas_matrix_t *flags, jas_matrix_t *data, int term, long *nmsedec) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dchnsecal.cpp517 * Return the major solar term on or after December 15 of the given
591 * Return the major solar term on or before a given date. This
608 int32_t term = ( ((int32_t)(6 * solarLongitude / CalendarAstronomer::PI)) + 2 ) % 12; local
609 if (term < 1) {
610 term += 12;
612 return term;
616 * Return true if the given month lacks a major solar term.
/external/ipsec-tools/src/racoon/
H A Disakmp_cfg.c1659 char term[UT_LINESIZE]; local
1668 sprintf(term, TERMSPEC, port);
1675 strncpy(ut.ut_line, term, UT_LINESIZE);
1695 usr, term);
1697 logout(term);
/external/llvm/lib/Transforms/Scalar/
H A DPlaceSafepoints.cpp363 TerminatorInst *term = pred->getTerminator(); local
367 term->dump();
370 PollLocations.push_back(term);
/external/pdfium/third_party/libopenjpeg20/
H A Dtcd.h73 OPJ_UINT32 term : 1; member in struct:opj_tcd_pass

Completed in 859 milliseconds

123