Searched refs:variance (Results 1 - 7 of 7) sorted by relevance

/freebsd-12-stable/contrib/ntp/sntp/libevent/test/
H A Dtest-ratelim.c263 double variance; local
460 variance = total_sq_persec/cfg_n_connections - total_persec*total_persec/(cfg_n_connections*cfg_n_connections);
462 printf(" stddev: %f per second\n", sqrt(variance));
464 sqrt(variance) > cfg_stddev_tolerance) {
465 fprintf(stderr, "Connection variance out of bounds\n");
/freebsd-12-stable/contrib/libevent/test/
H A Dtest-ratelim.c263 double variance; local
458 variance = total_sq_persec/cfg_n_connections - total_persec*total_persec/(cfg_n_connections*cfg_n_connections);
460 printf(" stddev: %f per second\n", sqrt(variance));
462 sqrt(variance) > cfg_stddev_tolerance) {
463 fprintf(stderr, "Connection variance out of bounds\n");
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h545 /// Describes the variance of a given generic parameter.
575 /// The variance of the type parameter.
578 /// The location of the variance, if any.
586 ObjCTypeParamVariance variance, SourceLocation varianceLoc,
592 Index(index), Variance(static_cast<unsigned>(variance)),
602 ObjCTypeParamVariance variance,
613 /// Determine the variance of this type parameter.
618 /// Set the variance of this type parameter.
619 void setVariance(ObjCTypeParamVariance variance) { argument
620 Variance = static_cast<unsigned>(variance);
585 ObjCTypeParamDecl(ASTContext &ctx, DeclContext *dc, ObjCTypeParamVariance variance, SourceLocation varianceLoc, unsigned index, SourceLocation nameLoc, IdentifierInfo *name, SourceLocation colonLoc, TypeSourceInfo *boundInfo) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp1411 ObjCTypeParamVariance variance,
1419 new (ctx, dc) ObjCTypeParamDecl(ctx, dc, variance, varianceLoc, index,
1410 Create(ASTContext &ctx, DeclContext *dc, ObjCTypeParamVariance variance, SourceLocation varianceLoc, unsigned index, SourceLocation nameLoc, IdentifierInfo *name, SourceLocation colonLoc, TypeSourceInfo *boundInfo) argument
/freebsd-12-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseObjc.cpp404 /// objc-type-parameter-variance? identifier objc-type-parameter-bound[opt]
409 /// objc-type-parameter-variance:
450 // Parse the variance, if any.
452 ObjCTypeParamVariance variance = ObjCTypeParamVariance::Invariant; local
454 variance = Tok.is(tok::kw___covariant)
459 // Once we've seen a variance specific , we know this is not a
514 getCurScope(), variance, varianceLoc, typeParams.size(), paramName,
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclObjC.cpp666 ObjCTypeParamVariance variance,
764 return ObjCTypeParamDecl::Create(Context, CurContext, variance, varianceLoc,
854 // Check for consistency of the variance.
859 // of the definition, just propagate the variance.
908 // Override the variance.
665 actOnObjCTypeParam(Scope *S, ObjCTypeParamVariance variance, SourceLocation varianceLoc, unsigned index, IdentifierInfo *paramName, SourceLocation paramLoc, SourceLocation colonLoc, ParsedType parsedTypeBound) argument
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h8905 ObjCTypeParamVariance variance,

Completed in 196 milliseconds