Home
last modified time | relevance | path

Searched refs:vb (Results 1 – 25 of 143) sorted by relevance

123456

/third_party/python/Lib/ctypes/test/
Dtest_wintypes.py17 vb = wintypes.VARIANT_BOOL()
18 self.assertIs(vb.value, False)
19 vb.value = True
20 self.assertIs(vb.value, True)
21 vb.value = true_value
22 self.assertIs(vb.value, True)
31 vb = wintypes.VARIANT_BOOL()
32 vb.value = set_value
33 self.assertIs(vb.value, True)
35 vb = wintypes.VARIANT_BOOL()
[all …]
/third_party/f2fs-tools/tools/sg_write_buffer/
Dsg_pt_linux_nvme.c194 int vb) in mk_sense_asc_ascq() argument
203 if (vb) in mk_sense_asc_ascq()
211 if (vb > 3) in mk_sense_asc_ascq()
217 mk_sense_from_nvme_status(struct sg_pt_linux_scsi * ptp, int vb) in mk_sense_from_nvme_status() argument
242 if (vb > 3) in mk_sense_from_nvme_status()
250 int in_bit, int vb) in mk_sense_invalid_fld() argument
261 if (vb) in mk_sense_invalid_fld()
286 if (vb > 3) in mk_sense_invalid_fld()
301 int time_secs, int vb) in do_nvme_admin_cmd() argument
311 if (vb > 2) { in do_nvme_admin_cmd()
[all …]
/third_party/openssl/crypto/srp/
Dsrp_vfy.c273 SRP_VBASE *vb = OPENSSL_malloc(sizeof(*vb)); in SRP_VBASE_new() local
275 if (vb == NULL) in SRP_VBASE_new()
277 if ((vb->users_pwd = sk_SRP_user_pwd_new_null()) == NULL in SRP_VBASE_new()
278 || (vb->gN_cache = sk_SRP_gN_cache_new_null()) == NULL) { in SRP_VBASE_new()
279 OPENSSL_free(vb); in SRP_VBASE_new()
282 vb->default_g = NULL; in SRP_VBASE_new()
283 vb->default_N = NULL; in SRP_VBASE_new()
284 vb->seed_key = NULL; in SRP_VBASE_new()
285 if ((seed_key != NULL) && (vb->seed_key = OPENSSL_strdup(seed_key)) == NULL) { in SRP_VBASE_new()
286 sk_SRP_user_pwd_free(vb->users_pwd); in SRP_VBASE_new()
[all …]
/third_party/boost/libs/numeric/ublas/test/opencl/
Delementwise_operations_test.hpp36 ublas::vector<T> vb; in run() local
57 vb.resize(rows); in run()
63 test::init_vector(vb, 200); in run()
75 result_v_add = va + vb; in run()
76 result_v_add_cl = opencl::element_add(va, vb, queue); in run()
78 result_v_sub = va - vb; in run()
79 result_v_sub_cl = opencl::element_sub(va, vb, queue); in run()
81 result_v_mul = ublas::element_prod(va, vb); in run()
82 result_v_mul_cl = opencl::element_prod(va, vb, queue); in run()
Dinner_prod_test.hpp25 ublas::vector<T> vb; in run() local
35 vb.resize(size); in run()
38 test::init_vector(vb, 200); in run()
40 result_inner_prod_ublas = ublas::inner_prod(va, vb); in run()
42 result_inner_prod_opencl = opencl::inner_prod(va, vb, queue); in run()
Douter_prod_test.hpp25 ublas::vector<T> vb; in run() local
36 vb.resize(cols); in run()
39 test::init_vector(vb, 200); in run()
42 resultUBLAS = ublas::outer_prod(va, vb); in run()
43 resultOPENCL = opencl::outer_prod(va, vb, queue); in run()
Dprod_test.hpp29 ublas::vector<T> vb; in run() local
46 vb.resize(rowsA); in run()
52 test::init_vector(vb, 200); in run()
65 result_vector_ublas_vm = ublas::prod(vb, a); in run()
66 result_vector_opencl_vm = opencl::prod(vb, a, queue); in run()
/third_party/lwip/src/apps/snmp/
Dsnmp_msg.c304 struct snmp_varbind vb; in snmp_receive() local
306 vb.next = NULL; in snmp_receive()
307 vb.prev = NULL; in snmp_receive()
308 vb.type = SNMP_ASN1_TYPE_COUNTER32; in snmp_receive()
309 vb.value_len = sizeof(u32_t); in snmp_receive()
314 snmp_oid_assign(&vb.oid, oid, LWIP_ARRAYSIZE(oid)); in snmp_receive()
315 vb.value = &snmp_stats.wrongdigests; in snmp_receive()
320 snmp_oid_assign(&vb.oid, oid, LWIP_ARRAYSIZE(oid)); in snmp_receive()
321 vb.value = &snmp_stats.unknownengineids; in snmp_receive()
326 snmp_oid_assign(&vb.oid, oid, LWIP_ARRAYSIZE(oid)); in snmp_receive()
[all …]
/third_party/gstreamer/gstplugins_base/ext/gl/
Dgstglcolorbalance.c464 GstGLColorBalance *vb = GST_GL_COLOR_BALANCE (balance); in gst_gl_color_balance_colorbalance_set_value() local
468 g_return_if_fail (vb != NULL); in gst_gl_color_balance_colorbalance_set_value()
469 g_return_if_fail (GST_IS_GL_COLOR_BALANCE (vb)); in gst_gl_color_balance_colorbalance_set_value()
472 GST_OBJECT_LOCK (vb); in gst_gl_color_balance_colorbalance_set_value()
475 changed = new_val != vb->hue; in gst_gl_color_balance_colorbalance_set_value()
476 vb->hue = new_val; in gst_gl_color_balance_colorbalance_set_value()
479 changed = new_val != vb->saturation; in gst_gl_color_balance_colorbalance_set_value()
480 vb->saturation = new_val; in gst_gl_color_balance_colorbalance_set_value()
483 changed = new_val != vb->brightness; in gst_gl_color_balance_colorbalance_set_value()
484 vb->brightness = new_val; in gst_gl_color_balance_colorbalance_set_value()
[all …]
/third_party/gstreamer/gstplugins_good/gst/videofilter/
Dgstvideobalance.c109 gst_video_balance_update_tables (GstVideoBalance * vb) in gst_video_balance_update_tables() argument
116 y = 16 + ((i - 16) * vb->contrast + vb->brightness * 255); in gst_video_balance_update_tables()
121 vb->tabley[i] = rint (y); in gst_video_balance_update_tables()
124 hue_cos = cos (G_PI * vb->hue); in gst_video_balance_update_tables()
125 hue_sin = sin (G_PI * vb->hue); in gst_video_balance_update_tables()
131 u = 128 + ((i * hue_cos + j * hue_sin) * vb->saturation); in gst_video_balance_update_tables()
132 v = 128 + ((-i * hue_sin + j * hue_cos) * vb->saturation); in gst_video_balance_update_tables()
141 vb->tableu[i + 128][j + 128] = rint (u); in gst_video_balance_update_tables()
142 vb->tablev[i + 128][j + 128] = rint (v); in gst_video_balance_update_tables()
670 GstVideoBalance *vb = GST_VIDEO_BALANCE (balance); in gst_video_balance_colorbalance_set_value() local
[all …]
/third_party/boost/boost/polygon/
Dvoronoi.hpp37 >::type insert(const Point& point, VB* vb) { in insert() argument
38 return vb->insert_point(x(point), y(point)); in insert()
51 >::type insert(const PointIterator first, const PointIterator last, VB* vb) { in insert() argument
53 insert(*it, vb); in insert()
65 >::type insert(const Segment& segment, VB* vb) { in insert() argument
66 return vb->insert_segment( in insert()
83 VB* vb) { in insert() argument
85 insert(*it, vb); in insert()
/third_party/typescript/tests/baselines/reference/
DtypesVersionsDeclarationEmit.multiFileBackReferenceToSelf.js32 export const vb = fb(); constant
38 exports.vb = exports.va = void 0;
42 exports.vb = other_1.fb();
47 export declare const vb: import("ext/other").B;
DtypesVersionsDeclarationEmit.multiFile.js34 export const vb = fb(); constant
40 exports.vb = exports.va = void 0;
44 exports.vb = other_1.fb();
49 export declare const vb: import("ext/other").B;
DtypesVersionsDeclarationEmit.ambient.js37 export const vb = fb(); constant
43 exports.vb = exports.va = void 0;
47 exports.vb = other_1.fb();
52 export declare const vb: import("ext/other").B;
DtypesVersionsDeclarationEmit.ambient.symbols12 export const vb = fb();
13 >vb : Symbol(vb, Decl(main.ts, 4, 12))
/third_party/boost/tools/build/example/qt/qt3/hello/
Dmain.cpp17 QVBox* vb = new QVBox(this); in Window() local
18 setCentralWidget(vb); in Window()
20 Canvas* c = new Canvas(vb); in Window()
21 QPushButton* b = new QPushButton("Change color", vb); in Window()
/third_party/pixman/test/
Dutils-prng.c81 *(uint8x16 *)addr = d->vb; in store_rand_128_data()
131 randdata.vb |= (t.vb >= const_C0); in randmemset_internal()
140 randdata.vb &= (t.vb >= const_40); in randmemset_internal()
209 randdata.vb = in randmemset_internal()
210 __builtin_shufflevector (randdata.vb, randdata.vb, in randmemset_internal()
218 randdata.vb = __builtin_shuffle (randdata.vb, bswap_shufflemask); in randmemset_internal()
/third_party/cmsis/CMSIS/DSP/Source/ComplexMathFunctions/
Darm_cmplx_mult_cmplx_f32.c142 float32x4x2_t va, vb; in arm_cmplx_mult_cmplx_f32() local
151 vb = vld2q_f32(pSrcB); // load & separate real/imag pSrcB in arm_cmplx_mult_cmplx_f32()
158 outCplx.val[0] = vmulq_f32(va.val[0], vb.val[0]); in arm_cmplx_mult_cmplx_f32()
159 outCplx.val[0] = vmlsq_f32(outCplx.val[0], va.val[1], vb.val[1]); in arm_cmplx_mult_cmplx_f32()
162 outCplx.val[1] = vmulq_f32(va.val[0], vb.val[1]); in arm_cmplx_mult_cmplx_f32()
163 outCplx.val[1] = vmlaq_f32(outCplx.val[1], va.val[1], vb.val[0]); in arm_cmplx_mult_cmplx_f32()
/third_party/skia/src/gpu/ops/
DQuadPerEdgeAA.cpp37 void write_quad_generic(VertexWriter* vb, in write_quad_generic() argument
53 *vb << deviceQuad->x(i) in write_quad_generic()
61 *vb << GrVertexColor(color * (mode == CoverageMode::kWithColor ? coverage[i] : 1.f), in write_quad_generic()
67 *vb << localQuad->x(i) in write_quad_generic()
74 *vb << geomSubset; in write_quad_generic()
79 *vb << texSubset; in write_quad_generic()
89 void write_2d_color(VertexWriter* vb, in write_2d_color() argument
113 *vb << deviceQuad->x(i) in write_2d_color()
121 void write_2d_uv(VertexWriter* vb, in write_2d_uv() argument
139 *vb << deviceQuad->x(i) in write_2d_uv()
[all …]
/third_party/openssl/include/openssl/
Dsrp.h75 void SRP_VBASE_free(SRP_VBASE *vb);
76 int SRP_VBASE_init(SRP_VBASE *vb, char *verifier_file);
79 DEPRECATEDIN_1_1_0(SRP_user_pwd *SRP_VBASE_get_by_user(SRP_VBASE *vb, char *username))
81 SRP_user_pwd *SRP_VBASE_get1_by_user(SRP_VBASE *vb, char *username);
/third_party/flutter/skia/experimental/svg/model/
DSkSVGSVG.cpp63 void SkSVGSVG::setViewBox(const SkSVGViewBoxType& vb) { in setViewBox() argument
64 fViewBox.set(vb); in setViewBox()
90 if (const auto* vb = v.as<SkSVGViewBoxValue>()) { in onSetAttribute() local
91 this->setViewBox(*vb); in onSetAttribute()
/third_party/skia/src/gpu/
DGrGeometryProcessor.cpp100 ProgramImpl::FPCoordsMap ProgramImpl::collectTransforms(GrGLSLVertexBuilder* vb, in collectTransforms() argument
121 vb->codeAppendf("%s = %s;\n", baseLocalCoord.vsOut(), localCoordsVar.getName().c_str()); in collectTransforms()
223 void ProgramImpl::emitTransformCode(GrGLSLVertexBuilder* vb, GrGLSLUniformHandler* uniformHandler) { in emitTransformCode() argument
282 vb->codeAppend("{\n"); in emitTransformCode()
284 if (vb->getProgramBuilder()->shaderCaps()->nonsquareMatrixSupport()) { in emitTransformCode()
285 vb->codeAppendf("%s = float3x2(%s) * %s", in emitTransformCode()
290 vb->codeAppendf("%s = (%s * %s).xy", in emitTransformCode()
297 vb->codeAppendf("%s = %s * %s", in emitTransformCode()
302 vb->codeAppend(";\n"); in emitTransformCode()
303 vb->codeAppend("}\n"); in emitTransformCode()
/third_party/gstreamer/gstplugins_base/tests/check/elements/
Dvorbisdec.c178 static vorbis_block vb; variable
192 vorbis_block_init (&vd, &vb); in _create_codebook_header_buffer()
214 vorbis_analysis_blockout (&vd, &vb); in _create_audio_buffer()
215 vorbis_analysis (&vb, NULL); in _create_audio_buffer()
216 vorbis_bitrate_addblock (&vb); in _create_audio_buffer()
222 vorbis_block_clear (&vb); in _create_audio_buffer()
/third_party/ffmpeg/libavcodec/
Dlibvorbisdec.c30 vorbis_block vb; /**< vorbis_block used for analysis */ member
121 vorbis_block_init(&context->vd, &context->vb); in oggvorbis_decode_init()
180 if(vorbis_synthesis(&context->vb, op) == 0) in oggvorbis_decode_frame()
181 vorbis_synthesis_blockin(&context->vd, &context->vb) ; in oggvorbis_decode_frame()
202 vorbis_block_clear(&context->vb); in oggvorbis_decode_close()
/third_party/gettext/gettext-tools/src/
Dwrite-catalog.c341 cmp_by_msgid (const void *va, const void *vb) in cmp_by_msgid() argument
344 const message_ty *b = *(const message_ty **) vb; in cmp_by_msgid()
382 cmp_filepos (const void *va, const void *vb) in cmp_filepos() argument
385 const lex_pos_ty *b = (const lex_pos_ty *) vb; in cmp_filepos()
419 cmp_by_filepos (const void *va, const void *vb) in cmp_by_filepos() argument
422 const message_ty *b = *(const message_ty **) vb; in cmp_by_filepos()

123456