Home
last modified time | relevance | path

Searched refs:vals (Results 1 - 25 of 189) sorted by relevance

12345678

/third_party/libunwind/libunwind/tests/
H A DGia64-test-nat.c51 typedef void save_func_t (void *funcs, unsigned long *vals);
52 typedef unw_word_t *check_func_t (unw_cursor_t *c, unsigned long *vals);
207 check_static_to_stacked (unw_cursor_t *c, unw_word_t *vals) in check_static_to_stacked() argument
216 vals -= 4; in check_static_to_stacked()
233 (vals[i] & 1) ? '*' : ' ', vals[i]); in check_static_to_stacked()
235 if (vals[i] & 1) in check_static_to_stacked()
244 if (r[i] != vals[i]) in check_static_to_stacked()
246 __FUNCTION__, 4 + i, r[i], vals[i]); in check_static_to_stacked()
249 return vals; in check_static_to_stacked()
253 check_static_to_fr(unw_cursor_t *c, unw_word_t *vals) check_static_to_fr() argument
290 check_static_to_br(unw_cursor_t *c, unw_word_t *vals) check_static_to_br() argument
326 check_static_to_mem(unw_cursor_t *c, unw_word_t *vals) check_static_to_mem() argument
362 check_static_to_memN(unw_cursor_t *c, unw_word_t *vals, const char *func) check_static_to_memN() argument
398 check_static_to_mem2(unw_cursor_t *c, unw_word_t *vals) check_static_to_mem2() argument
404 check_static_to_mem3(unw_cursor_t *c, unw_word_t *vals) check_static_to_mem3() argument
410 check_static_to_mem4(unw_cursor_t *c, unw_word_t *vals) check_static_to_mem4() argument
416 check_static_to_mem5(unw_cursor_t *c, unw_word_t *vals) check_static_to_mem5() argument
422 check_static_to_scratch(unw_cursor_t *c, unw_word_t *vals) check_static_to_scratch() argument
501 check_pr(unw_cursor_t *c, unw_word_t *vals) check_pr() argument
539 check_rotate_regs(unw_cursor_t *c, unw_word_t *vals) check_rotate_regs() argument
547 start_checks(void *funcs, unsigned long *vals) start_checks() argument
[all...]
/third_party/cups-filters/cupsfilters/
H A Dlut.c54 float vals[4]; /* Values */ in cupsLutLoad() local
78 vals[0] = 0.0; in cupsLutLoad()
79 vals[1] = 0.0; in cupsLutLoad()
80 vals[2] = 0.0; in cupsLutLoad()
81 vals[3] = 0.0; in cupsLutLoad()
82 nvals = sscanf(attr->value, "%f%f%f", vals + 1, vals + 2, vals + 3) + 1; in cupsLutLoad()
85 name, vals[0], vals[ in cupsLutLoad()
[all...]
/third_party/ffmpeg/libavcodec/
H A Dmss4.c306 #define MKVAL(vals) ((vals)[0] | ((vals)[1] << 3) | ((vals)[2] << 6))
327 int vals[3] = { 0 }; in mss4_decode_image_block() local
353 vals[0] = vals[1] = vals[2] = 0; in mss4_decode_image_block()
362 vals[0] = prev_mode[i] & 7; in mss4_decode_image_block()
363 vals[ in mss4_decode_image_block()
[all...]
/third_party/backends/backend/
H A Dcanon_pp.c779 cmodes[cs->vals[opt]]); in sane_control_option()
783 depths[cs->vals[opt]]); in sane_control_option()
786 *((int *)val) = res600[cs->vals[opt]]; in sane_control_option()
789 *((int *)val) = cs->vals[opt]; in sane_control_option()
802 i = cs->vals[opt]; in sane_control_option()
803 cs->vals[opt] = 1; in sane_control_option()
807 while ((cs->vals[opt] <= maxresi) && in sane_control_option()
808 (res600[cs->vals[opt]] in sane_control_option()
811 cs->vals[opt] += 1; in sane_control_option()
814 if (res600[cs->vals[op in sane_control_option()
[all...]
/third_party/skia/third_party/skcms/
H A Dskcms.cc397 m->vals[r][c] = read_big_fixed(values);
433 return read_tag_xyz(rXYZ, &toXYZ->vals[0][0], &toXYZ->vals[1][0], &toXYZ->vals[2][0]) &&
434 read_tag_xyz(gXYZ, &toXYZ->vals[0][1], &toXYZ->vals[1][1], &toXYZ->vals[2][1]) &&
435 read_tag_xyz(bXYZ, &toXYZ->vals[0][2], &toXYZ->vals[1][2], &toXYZ->vals[
[all...]
/third_party/node/deps/v8/tools/mb/
H A Dmb.py300 vals = self.Lookup()
301 return self.RunGNAnalyze(vals)
332 vals = self.Lookup()
333 return self.RunGNGen(vals)
342 vals = self.GetConfig()
343 if not vals:
348 vals = self.Lookup()
349 gn_args = self.GNArgs(vals, expand_imports=self.args.recursive)
361 vals = self.GetConfig()
362 if not vals
[all...]
/third_party/skia/samplecode/
H A DSampleCusp.cpp130 SkScalar vals[9]; variable
131 vals[0] = linearToLoop(3000, 0, 1);
132 vals[1] = linearToLoop(4000, .25, 1.25);
133 vals[2] = 200;
134 vals[3] = linearToLoop(5000, .5, 1.5);
135 vals[4] = linearToLoop(7000, .75, 1.75);
136 vals[5] = 300;
137 vals[6] = 0;
138 vals[7] = 0;
139 vals[
[all...]
/third_party/qrcodegen/java-fast/io/nayuki/fastqrcodegen/
H A DBitBuffer.java101 // word array and given bit length. Requires 0 <= len <= 32 * vals.length.
102 public void appendBits(int[] vals, int len) { in appendBits() argument
103 Objects.requireNonNull(vals); in appendBits()
106 if (len < 0 || len > vals.length * 32L) in appendBits()
110 if (tailBits > 0 && vals[wholeWords] << tailBits != 0) in appendBits()
120 System.arraycopy(vals, 0, data, bitLength / 32, (len + 31) / 32); in appendBits()
124 int word = vals[i]; in appendBits()
130 appendBits(vals[wholeWords] >>> (32 - tailBits), tailBits); in appendBits()
/third_party/skia/tools/skottie-wasm-perf/
H A Dparse_perf_csvs.py39 vals = [float(i) for i in v[1:]]
40 vals.sort()
42 vals = vals[NUM_OUTLIERS_TO_REMOVE:-NUM_OUTLIERS_TO_REMOVE]
44 avg_val = reduce(lambda x, y: x+y, vals) / float(len(vals))
/third_party/skia/src/core/
H A DSkColorSpace.cpp31 if (!color_space_almost_equal(mA.vals[r][c], mB.vals[r][c])) { in xyz_almost_equal()
334 memcpy(&toXYZ.vals[0][0], (const float*)data + 0, 3 * sizeof(float)); in Deserialize()
335 memcpy(&toXYZ.vals[1][0], (const float*)data + 4, 3 * sizeof(float)); in Deserialize()
336 memcpy(&toXYZ.vals[2][0], (const float*)data + 8, 3 * sizeof(float)); in Deserialize()
374 memcpy(&toXYZ.vals[0][0], (const float*)data + 0, 3 * sizeof(float)); in Deserialize()
375 memcpy(&toXYZ.vals[1][0], (const float*)data + 4, 3 * sizeof(float)); in Deserialize()
376 memcpy(&toXYZ.vals[2][0], (const float*)data + 8, 3 * sizeof(float)); in Deserialize()
414 float X = x->fToXYZD50.vals[r][c], in Equals()
415 Y = y->fToXYZD50.vals[ in Equals()
[all...]
H A DSkColorSpaceXformSteps.cpp44 this->src_to_dst_matrix[0] = src_to_dst.vals[0][0]; in SkColorSpaceXformSteps()
45 this->src_to_dst_matrix[1] = src_to_dst.vals[1][0]; in SkColorSpaceXformSteps()
46 this->src_to_dst_matrix[2] = src_to_dst.vals[2][0]; in SkColorSpaceXformSteps()
48 this->src_to_dst_matrix[3] = src_to_dst.vals[0][1]; in SkColorSpaceXformSteps()
49 this->src_to_dst_matrix[4] = src_to_dst.vals[1][1]; in SkColorSpaceXformSteps()
50 this->src_to_dst_matrix[5] = src_to_dst.vals[2][1]; in SkColorSpaceXformSteps()
52 this->src_to_dst_matrix[6] = src_to_dst.vals[0][2]; in SkColorSpaceXformSteps()
53 this->src_to_dst_matrix[7] = src_to_dst.vals[1][2]; in SkColorSpaceXformSteps()
54 this->src_to_dst_matrix[8] = src_to_dst.vals[2][2]; in SkColorSpaceXformSteps()
/third_party/skia/tests/
H A DSkNxTest.cpp19 float vals[4]; in test_Nf()
20 v.store(vals); in test_Nf()
21 bool ok = close(vals[0], a) && close(vals[1], b) in test_Nf()
25 ok = close(vals[2], c) && close(vals[3], d) in test_Nf()
34 float vals[] = {3, 4, 5, 6}; in test_Nf() local
35 SkNx<N,float> a = SkNx<N,float>::Load(vals), in test_Nf()
80 T vals[8]; in test_Ni()
81 v.store(vals); in test_Ni()
105 T vals[] = { 1,2,3,4,5,6,7,8 }; test_Ni() local
[all...]
/third_party/rust/crates/clap/src/parser/matches/
H A Dmatched_arg.rs20 vals: Vec<Vec<AnyValue>>,
32 vals: Vec::new(),
44 vals: Vec::new(),
60 vals: Vec::new(),
78 pub(crate) fn vals(&self) -> Iter<Vec<AnyValue>> {
79 self.vals.iter()
83 self.vals
87 self.vals.iter().flatten()
91 self.vals.into_iter().flatten()
112 self.vals
[all...]
/third_party/node/deps/npm/node_modules/cli-table3/src/
H A Dlayout-manager.js194 return function (vals, table) {
208 vals.forEach(function (val, index) {
220 let editableCols = typeof vals[col] === 'number' ? 0 : 1;
224 if (typeof vals[col + i] !== 'number') {
238 if (typeof vals[col + i] !== 'number') {
249 Object.assign(vals, result, auto);
250 for (let j = 0; j < vals.length; j++) {
251 vals[j] = Math.max(forcedMin, vals[j] || 0);
/third_party/node/deps/openssl/openssl/crypto/bn/
H A Dbn_ctx.c26 BIGNUM vals[BN_CTX_POOL_SIZE]; member
92 item->vals[bnidx++ % BN_CTX_POOL_SIZE].dmax); in ctxdbg()
170 BIO_printf(trc_out, "%02x ", pool->vals[loop++].dmax); in BN_CTX_free()
306 for (loop = 0, bn = p->head->vals; loop++ < BN_CTX_POOL_SIZE; bn++) in BN_POOL_finish()
329 for (loop = 0, bn = item->vals; loop++ < BN_CTX_POOL_SIZE; bn++) { in BN_POOL_get()
347 return item->vals; in BN_POOL_get()
354 return p->current->vals + ((p->used++) % BN_CTX_POOL_SIZE); in BN_POOL_get()
363 bn_check_top(p->current->vals + offset); in BN_POOL_release()
/third_party/openssl/crypto/bn/
H A Dbn_ctx.c26 BIGNUM vals[BN_CTX_POOL_SIZE]; member
92 item->vals[bnidx++ % BN_CTX_POOL_SIZE].dmax); in ctxdbg()
170 BIO_printf(trc_out, "%02x ", pool->vals[loop++].dmax); in BN_CTX_free()
306 for (loop = 0, bn = p->head->vals; loop++ < BN_CTX_POOL_SIZE; bn++) in BN_POOL_finish()
329 for (loop = 0, bn = item->vals; loop++ < BN_CTX_POOL_SIZE; bn++) { in BN_POOL_get()
347 return item->vals; in BN_POOL_get()
354 return p->current->vals + ((p->used++) % BN_CTX_POOL_SIZE); in BN_POOL_get()
363 bn_check_top(p->current->vals + offset); in BN_POOL_release()
/third_party/skia/experimental/graphite/src/geom/
H A DRect.h49 AI static Rect FromVals(float4 vals) { // vals.zw must already be negated. in FromVals() argument
50 return Rect(vals); in FromVals()
65 AI const float4& vals() const { return fVals; } // [left, top, -right, -bot]. in vals() function in skgpu::Rect
66 AI float4& vals() { return fVals; } // [left, top, -right, -bot]. in vals() function in skgpu::Rect
144 AI static float4 NegateBotRight(float4 vals) { // Returns [vals.xy, -vals.zw]. in NegateBotRight() argument
145 return skvx::bit_pun<float4>(skvx::bit_pun<uint4>(vals) ^ uint4(0, 0, 1u << 31, 1u << 31)); in NegateBotRight()
148 AI Rect(float4 vals) argument
[all...]
H A DIntersectionTree.cpp122 fSplittableBounds = max(fSplittableBounds, rect.vals()); in appendToList()
123 fRectValsSum += rect.vals(); // [sum(left), sum(top), -sum(right), -sum(bot)] in appendToList()
124 fLefts[i] = rect.vals()[0]; in appendToList()
125 fTops[i] = rect.vals()[1]; in appendToList()
126 fNegRights[i] = rect.vals()[2]; in appendToList()
127 fNegBots[i] = rect.vals()[3]; in appendToList()
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_nir_aos.c150 LLVMValueRef vals) in emit_store_var()
157 if (LLVMIsConstant(vals)) { in emit_store_var()
158 vals = lp_nir_aos_conv_const(gallivm, vals, num_components); in emit_store_var()
162 LLVMBuildStore(gallivm->builder, vals, bld->outputs[location]); in emit_store_var()
186 LLVMValueRef vals[NIR_MAX_VEC_COMPONENTS]) in emit_store_reg()
190 if (LLVMIsConstant(vals[0])) in emit_store_reg()
191 vals[0] = lp_nir_aos_conv_const(gallivm, vals[0], 1); in emit_store_reg()
194 LLVMBuildStore(gallivm->builder, vals[ in emit_store_reg()
141 emit_store_var(struct lp_build_nir_context *bld_base, nir_variable_mode deref_mode, unsigned num_components, unsigned bit_size, nir_variable *var, unsigned writemask, LLVMValueRef indir_vertex_index, unsigned const_index, LLVMValueRef indir_index, LLVMValueRef vals) emit_store_var() argument
180 emit_store_reg(struct lp_build_nir_context *bld_base, struct lp_build_context *reg_bld, const nir_reg_dest *reg, unsigned writemask, LLVMValueRef indir_src, LLVMValueRef reg_storage, LLVMValueRef vals[NIR_MAX_VEC_COMPONENTS]) emit_store_reg() argument
[all...]
/third_party/skia/docs/examples/
H A DDCIToXYZD50.cpp22 SkDebugf("%f %f %f\n", toXYZ.vals[i][0], toXYZ.vals[i][1], toXYZ.vals[i][2]); in REG_FIDDLE()
/third_party/skia/tools/
H A Dbloaty_treemap.py68 vals = line.rstrip().split("\t")
69 if len(vals) != 4:
72 (filepath, symbol, vmsize, filesize) = vals
/third_party/curl/lib/
H A Dldap.c607 BerValue **vals; in ldap_do() local
624 vals = ldap_get_values_len(server, entryIterator, attribute); in ldap_do()
625 if(vals) { in ldap_do()
626 for(i = 0; (vals[i] != NULL); i++) { in ldap_do()
629 ldap_value_free_len(vals); in ldap_do()
640 ldap_value_free_len(vals); in ldap_do()
651 ldap_value_free_len(vals); in ldap_do()
663 result = Curl_base64_encode(vals[i]->bv_val, vals[i]->bv_len, in ldap_do()
666 ldap_value_free_len(vals); in ldap_do()
[all...]
/third_party/ffmpeg/libavcodec/tests/
H A Ddct.c120 static void init_block(int16_t block[64], int test, int is_idct, AVLFG *prng, int vals) in init_block() argument
129 block[i] = (av_lfg_get(prng) % (2*vals)) -vals; in init_block()
140 block[idx] = av_lfg_get(prng) % (2*vals) -vals; in init_block()
144 block[ 0] = av_lfg_get(prng) % (16*vals) - (8*vals); in init_block()
191 const int vals=1<<bits; in dct_error() local
202 init_block(block1, test, is_idct, &prng, vals); in dct_error()
271 init_block(block, test, is_idct, &prng, vals); in dct_error()
[all...]
/third_party/skia/third_party/externals/freetype/src/psaux/
H A Dpsintrp.c342 CF2_Fixed vals[14]; in cf2_doFlex() local
348 vals[0] = *curX; in cf2_doFlex()
349 vals[1] = *curY; in cf2_doFlex()
356 vals[i + 2] = vals[i]; in cf2_doFlex()
358 vals[i + 2] = ADD_INT32( vals[i + 2], cf2_stack_getReal( opStack, in cf2_doFlex()
363 vals[9 + 2] = *curY; in cf2_doFlex()
368 cf2_fixedAbs( SUB_INT32( vals[10], *curX ) ) > in cf2_doFlex()
369 cf2_fixedAbs( SUB_INT32( vals[1 in cf2_doFlex()
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
H A DPrint.hpp155 // vals is a helper to build composite value lists.
156 // vals returns the full, sequential list of printf argument values used
158 // vals() is intended to be used by implementations of
159 // PrintValue::Ty<>::vals() to help declare aggregate types.
177 // return PrintValue::vals(v.a, v.b, v.c, v.d);
182 static std::vector<Value *> vals(ARGS... v) in vals() function in rr::PrintValue
340 // VPrintf emits a call to printf() using vals[0] as the format string,
341 // and vals[1..n] as the args.
342 void VPrintf(const std::vector<Value *> &vals);
347 void Printv(const char *function, const char *file, int line, const char *msg, std::initializer_list<PrintValue> vals);
359 Printv(const char *msg, std::initializer_list<PrintValue> vals) Printv() argument
367 Print(const char *msg, const ARGS &...vals) Print() argument
375 Print(const char *function, const char *file, int line, const char *msg, const ARGS &...vals) Print() argument
[all...]

Completed in 27 milliseconds

12345678