/third_party/node/deps/openssl/openssl/crypto/conf/ |
D | conf_api.c | 25 CONF_VALUE vv; in _CONF_get_section() local 29 vv.name = NULL; in _CONF_get_section() 30 vv.section = (char *)section; in _CONF_get_section() 31 return conf->data != NULL ? lh_CONF_VALUE_retrieve(conf->data, &vv) : NULL; in _CONF_get_section() 69 CONF_VALUE *v, vv; in _CONF_get_string() local 79 vv.name = (char *)name; in _CONF_get_string() 80 vv.section = (char *)section; in _CONF_get_string() 81 v = lh_CONF_VALUE_retrieve(conf->data, &vv); in _CONF_get_string() 90 vv.section = "default"; in _CONF_get_string() 91 vv.name = (char *)name; in _CONF_get_string() [all …]
|
/third_party/openssl/crypto/conf/ |
D | conf_api.c | 25 CONF_VALUE vv; in _CONF_get_section() local 29 vv.name = NULL; in _CONF_get_section() 30 vv.section = (char *)section; in _CONF_get_section() 31 return conf->data != NULL ? lh_CONF_VALUE_retrieve(conf->data, &vv) : NULL; in _CONF_get_section() 69 CONF_VALUE *v, vv; in _CONF_get_string() local 79 vv.name = (char *)name; in _CONF_get_string() 80 vv.section = (char *)section; in _CONF_get_string() 81 v = lh_CONF_VALUE_retrieve(conf->data, &vv); in _CONF_get_string() 90 vv.section = "default"; in _CONF_get_string() 91 vv.name = (char *)name; in _CONF_get_string() [all …]
|
/third_party/rust/crates/libc/ci/ |
D | build.sh | 44 cargo "+${RUST}" "${BUILD_CMD}" -vv --no-default-features --target "${TARGET}" 48 -Z build-std=core,alloc -vv --no-default-features --target "${TARGET}" 53 cargo "+${RUST}" "${BUILD_CMD}" -vv --target "${TARGET}" 56 -Z build-std=core,alloc -vv --target "${TARGET}" 61 cargo "+${RUST}" "${BUILD_CMD}" -vv --no-default-features --target "${TARGET}" \ 65 -Z build-std=core,alloc -vv --no-default-features \ 72 cargo "+${RUST}" "${BUILD_CMD}" -vv --no-default-features --target "${TARGET}" \ 76 -Z build-std=core,alloc -vv --no-default-features \ 83 cargo "+${RUST}" "${BUILD_CMD}" -vv --target "${TARGET}" \ 87 -Z build-std=core,alloc -vv --target "${TARGET}" \
|
/third_party/mksh/ |
D | Build.sh | 608 *.ll *.o *.gen *.cat1 Rebuild.sh lft no signames.inc test.sh x vv.out *.htm 679 vv ']' "${CC-cc} -E $CFLAGS $CPPFLAGS $NOWARN conftest.c | grep ct= | tr -d \\\\015 >x" 682 rmf x vv.out 1080 vv '|' "oslevel >&2" 1081 vv '|' "uname -a >&2" 1084 vv '|' "hwprefs machine_type os_type os_class >&2" 1085 vv '|' "sw_vers >&2" 1086 vv '|' "system_profiler -detailLevel mini SPSoftwareDataType SPHardwareDataType >&2" 1087 vv '|' "/bin/sh --version >&2" 1088 vv '|' "xcodebuild -version >&2" [all …]
|
/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
D | sb_liveness.cpp | 251 bool liveness::remove_vec(vvec &vv) { in remove_vec() argument 253 for (vvec::reverse_iterator I = vv.rbegin(), E = vv.rend(); I != E; ++I) { in remove_vec() 281 bool liveness::add_vec(vvec &vv, bool src) { in add_vec() argument 283 for (vvec::iterator I = vv.begin(), E = vv.end(); I != E; ++I) { in add_vec() 348 gpr_array_vec &vv = sh.arrays(); in init() local 349 for (gpr_array_vec::iterator I = vv.begin(), E = vv.end(); I != E; in init() 359 void liveness::update_src_vec(vvec &vv, bool src) { in update_src_vec() argument 360 for (vvec::iterator I = vv.begin(), E = vv.end(); I != E; ++I) { in update_src_vec()
|
D | sb_pass.h | 143 bool cleanup_dst_vec(vvec &vv); 162 void process_defs(node *n, vvec &vv, bool arr_def); 192 static void dump_vec(const vvec & vv); 195 static void dump_rels(vvec & vv); 300 unsigned get_uc_vec(vvec &vv); 301 unsigned get_dc_vec(vvec &vv, bool src); 400 bool add_vec(vvec &vv, bool src); 402 void update_src_vec(vvec &vv, bool src); 495 void check_src_vec(node *n, unsigned id, vvec &vv, bool src); 581 void split_vec(vvec &vv, vvec &v1, vvec &v2, bool allow_swz); [all …]
|
D | sb_ra_init.cpp | 387 vvec &vv = c->values; in color_bs_constraint() local 388 assert(vv.size() <= 8); in color_bs_constraint() 392 dump::dump_vec(vv); in color_bs_constraint() 401 for (vvec::iterator I = vv.begin(), E = vv.end(); I != E; ++I) { in color_bs_constraint() 659 vvec vv = n->src; in split_packed_ins() local 662 for (vvec::iterator I = vv.begin(), E = vv.end(); I != E; ++I) { in split_packed_ins() 685 n->src = vv; in split_packed_ins() 710 void ra_split::split_vec(vvec &vv, vvec &v1, vvec &v2, bool allow_swz) { in split_vec() argument 712 for (vvec::iterator I = vv.begin(), E = vv.end(); I != E; ++I, ++ch) { in split_vec()
|
D | sb_sched.h | 288 void release_src_vec(vvec &vv, bool src); 292 void init_uc_vec(container_node *c, vvec &vv, bool src); 308 bool map_src_vec(vvec &vv, bool src); 314 void update_live_src_vec(vvec &vv, val_set *born, bool src); 315 void update_live_dst_vec(vvec &vv);
|
D | sb_dce_cleanup.cpp | 145 bool dce_cleanup::cleanup_dst_vec(vvec& vv) { in cleanup_dst_vec() argument 148 for (vvec::iterator I = vv.begin(), E = vv.end(); I != E; ++I) { in cleanup_dst_vec()
|
D | sb_dump.cpp | 303 void dump::dump_vec(const vvec & vv) { in dump_vec() argument 305 for(vvec::const_iterator I = vv.begin(), E = vv.end(); I != E; ++I) { in dump_vec() 320 void dump::dump_rels(vvec & vv) { in dump_rels() argument 321 for(vvec::iterator I = vv.begin(), E = vv.end(); I != E; ++I) { in dump_rels()
|
D | sb_sched.cpp | 747 void post_scheduler::init_uc_vec(container_node *c, vvec &vv, bool src) { in init_uc_vec() argument 748 for (vvec::iterator I = vv.begin(), E = vv.end(); I != E; ++I) { in init_uc_vec() 1009 void post_scheduler::update_live_src_vec(vvec &vv, val_set *born, bool src) { in update_live_src_vec() argument 1010 for (vvec::iterator I = vv.begin(), E = vv.end(); I != E; ++I) { in update_live_src_vec() 1038 void post_scheduler::update_live_dst_vec(vvec &vv) { in update_live_dst_vec() argument 1039 for (vvec::iterator I = vv.begin(), E = vv.end(); I != E; ++I) { in update_live_dst_vec() 1254 vvec &vv = v->chunk->values; in set_color_local() local 1255 for (vvec::iterator I = vv.begin(), E = vv.end(); I != E; ++I) { in set_color_local() 1451 bool post_scheduler::map_src_vec(vvec &vv, bool src) { in map_src_vec() argument 1455 for (vvec::iterator I = vv.begin(), E = vv.end(); I != E; ++I) { in map_src_vec() [all …]
|
D | sb_ssa_builder.cpp | 339 void ssa_rename::rename_src_vec(node *n, vvec &vv, bool src) { in rename_src_vec() argument 340 for(vvec::iterator I = vv.begin(), E = vv.end(); I != E; ++I) { in rename_src_vec() 363 void ssa_rename::rename_dst_vec(node *n, vvec &vv, bool set_def) { in rename_dst_vec() argument 365 for(vvec::iterator I = vv.begin(), E = vv.end(); I != E; ++I) { in rename_dst_vec()
|
/third_party/ffmpeg/libswscale/ppc/ |
D | swscale_vsx.c | 536 vec_s16 vv; in yuv2rgb_full_X_vsx_template() local 595 vv = vec_ld(0, &lumSrc[j][i]); in yuv2rgb_full_X_vsx_template() 596 tmp = vec_mule(vv, vlumFilter[j]); in yuv2rgb_full_X_vsx_template() 597 tmp2 = vec_mulo(vv, vlumFilter[j]); in yuv2rgb_full_X_vsx_template() 606 vv = vec_ld(0, &chrUSrc[j][i]); in yuv2rgb_full_X_vsx_template() 607 tmp = vec_mule(vv, vchrFilter[j]); in yuv2rgb_full_X_vsx_template() 608 tmp2 = vec_mulo(vv, vchrFilter[j]); in yuv2rgb_full_X_vsx_template() 615 vv = vec_ld(0, &chrVSrc[j][i]); in yuv2rgb_full_X_vsx_template() 616 tmp = vec_mule(vv, vchrFilter[j]); in yuv2rgb_full_X_vsx_template() 617 tmp2 = vec_mulo(vv, vchrFilter[j]); in yuv2rgb_full_X_vsx_template() [all …]
|
/third_party/ffmpeg/libavutil/avr32/ |
D | intreadwrite.h | 115 union { uint64_t v; uint32_t hl[2]; } vv = { v }; in AV_WB64() local 116 AV_WB32(p, vv.hl[0]); in AV_WB64() 117 AV_WB32((uint32_t*)p+1, vv.hl[1]); in AV_WB64() 123 union { uint64_t v; uint32_t hl[2]; } vv = { v }; in AV_WL64() local 124 AV_WL32(p, vv.hl[1]); in AV_WL64() 125 AV_WL32((uint32_t*)p+1, vv.hl[0]); in AV_WL64()
|
/third_party/skia/src/gpu/tessellate/ |
D | WangsFormula.h | 126 float2 vv = v*v; variable 127 return (vv[0] + vv[1]) * length_term_pow2<2>(precision); 155 float4 vv = v*v; variable 156 return std::max(vv[0] + vv[1], vv[2] + vv[3]) * length_term_pow2<3>(precision);
|
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/3.1/mapped_types_on_tuples_and_arrays/ |
D | mapped_types_on_tuples_and_arrays_1.ts | 43 let vv: any = cc.pop(); variable 44 Assert.equal(vv[0], "hello"); 45 Assert.equal(vv[1], "world");
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
D | dng_point.h | 43 dng_point (int32 vv, int32 hh) in dng_point() argument 44 : v (vv) in dng_point() 80 dng_point_real64 (real64 vv, real64 hh) in dng_point_real64() argument 81 : v (vv) in dng_point_real64()
|
D | dng_temperature.cpp | 105 real64 vv = v - kTempTable [index] . v; in Set_xy_coord() local 109 real64 dt = - uu * dv + vv * du; in Set_xy_coord() 144 vv = v - (kTempTable [index - 1] . v * f + in Set_xy_coord() 159 fTint = (uu * du + vv * dv) * kTintScale; in Set_xy_coord()
|
/third_party/python/Objects/ |
D | longobject.c | 373 PyLong_AsLongAndOverflow(PyObject *vv, int *overflow) in PyLong_AsLongAndOverflow() argument 384 if (vv == NULL) { in PyLong_AsLongAndOverflow() 389 if (PyLong_Check(vv)) { in PyLong_AsLongAndOverflow() 390 v = (PyLongObject *)vv; in PyLong_AsLongAndOverflow() 393 v = (PyLongObject *)_PyNumber_Index(vv); in PyLong_AsLongAndOverflow() 487 PyLong_AsSsize_t(PyObject *vv) { in PyLong_AsSsize_t() argument 493 if (vv == NULL) { in PyLong_AsSsize_t() 497 if (!PyLong_Check(vv)) { in PyLong_AsSsize_t() 502 v = (PyLongObject *)vv; in PyLong_AsSsize_t() 542 PyLong_AsUnsignedLong(PyObject *vv) in PyLong_AsUnsignedLong() argument [all …]
|
/third_party/ffmpeg/libavutil/ppc/ |
D | intreadwrite.h | 99 union { uint64_t v; uint32_t hl[2]; } vv = { v }; in av_write_bswap64() local 103 : "r"(vv.hl[1]), "r"(vv.hl[0])); in av_write_bswap64()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
D | hb-bit-page.hh | 120 const elt_t vv = v[i] & ~((elt_t (1) << j) - 1); in next() local 121 for (const elt_t *p = &vv; i < len (); p = &v[++i]) in next() 146 const elt_t vv = v[i] & mask; in previous() local 147 const elt_t *p = &vv; in previous()
|
D | gen-indic-table.py | 142 vv = sorted (values[i].keys ()) variable 143 for v in vv: 263 vv = sorted (values[i].keys ()) variable 264 for v in vv:
|
/third_party/mesa3d/src/mesa/vbo/ |
D | vbo_exec_eval.c | 182 GLfloat vv = (v - map->v1) * map->dv; in vbo_exec_do_EvalCoord2f() local 190 uu, vv, in vbo_exec_do_EvalCoord2f() 205 GLfloat vv = (v - map->v1) * map->dv; in vbo_exec_do_EvalCoord2f() local 214 _math_de_casteljau_surf(map->Points, vertex, du, dv, uu, vv, in vbo_exec_do_EvalCoord2f() 239 _math_horner_bezier_surf(map->Points, vertex, uu, vv, in vbo_exec_do_EvalCoord2f()
|
/third_party/elfutils/tests/ |
D | testfile_parameter_ref.c | 3 volatile int vv; variable 12 vv++; in foo()
|
/third_party/typescript/tests/baselines/reference/ |
D | propertyAccess.js | 121 var vv = noIndex[32]; variable 122 var vv: any; variable 267 var vv = noIndex[32]; 268 var vv; variable
|