Searched refs:nref (Results 1 – 7 of 7) sorted by relevance
/third_party/boringssl/src/crypto/x509v3/ |
D | v3_cpols.c | 329 NOTICEREF *nref; in notice_section() local 331 if (!(nref = NOTICEREF_new())) in notice_section() 333 not->noticeref = nref; in notice_section() 335 nref = not->noticeref; in notice_section() 337 nref->organization->type = V_ASN1_IA5STRING; in notice_section() 339 nref->organization->type = V_ASN1_VISIBLESTRING; in notice_section() 340 if (!ASN1_STRING_set(nref->organization, cnf->value, in notice_section() 344 NOTICEREF *nref; in notice_section() local 347 if (!(nref = NOTICEREF_new())) in notice_section() 349 not->noticeref = nref; in notice_section() [all …]
|
/third_party/openssl/crypto/x509v3/ |
D | v3_cpols.c | 315 NOTICEREF *nref; in notice_section() local 317 if ((nref = NOTICEREF_new()) == NULL) in notice_section() 319 not->noticeref = nref; in notice_section() 321 nref = not->noticeref; in notice_section() 323 nref->organization->type = V_ASN1_IA5STRING; in notice_section() 325 nref->organization->type = V_ASN1_VISIBLESTRING; in notice_section() 326 if (!ASN1_STRING_set(nref->organization, cnf->value, in notice_section() 330 NOTICEREF *nref; in notice_section() local 333 if ((nref = NOTICEREF_new()) == NULL) in notice_section() 335 not->noticeref = nref; in notice_section() [all …]
|
/third_party/skia/third_party/externals/spirv-cross/reference/shaders-hlsl-no-opt/comp/ |
D | glsl.std450.fxconly.comp | 187 float spvFaceForward(float n, float i, float nref) 189 return i * nref < 0.0 ? n : -n;
|
/third_party/skia/third_party/externals/spirv-cross/reference/shaders-msl-no-opt/comp/ |
D | glsl.std450.comp | 195 inline T spvFaceForward(T n, T i, T nref) 197 return i * nref < T(0) ? n : -n;
|
/third_party/skia/include/sksl/ |
D | DSLCore.h | 308 DSLExpression Faceforward(DSLExpression n, DSLExpression i, DSLExpression nref,
|
/third_party/skia/src/sksl/dsl/ |
D | DSLCore.cpp | 558 DSLExpression Faceforward(DSLExpression n, DSLExpression i, DSLExpression nref, PositionInfo pos) { in Faceforward() argument 559 return DSLExpression(DSLCore::Call("faceforward", std::move(n), std::move(i), std::move(nref)), in Faceforward()
|
/third_party/skia/third_party/externals/tint/src/reader/spirv/ |
D | function.cc | 4054 auto nref = MakeOperand(inst, 4); in EmitGlslStd450ExtInst() local 4057 TINT_ASSERT(Reader, nref.type->Is<F32>()); in EmitGlslStd450ExtInst() 4067 builder_.Mul({}, incident.expr, nref.expr), in EmitGlslStd450ExtInst()
|