HomeSort by relevance Sort by last modified time
    Searched refs:Origin (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /external/compiler-rt/lib/msan/
msan_origin.h 10 // Origin id utils.
20 // Origin handling.
22 // Origin is a 32-bit identifier that is attached to any uninitialized value in
26 // There are 3 kinds of origin ids:
27 // 1xxx xxxx xxxx xxxx heap origin id
28 // 0000 xxxx xxxx xxxx stack origin id
29 // 0zzz xxxx xxxx xxxx chained origin id
31 // Heap origin id describes a heap memory allocation and contains (in the xxx
34 // Stack origin id describes a stack memory allocation and contains (in the xxx
38 // Chained origin id describes an event of storing an uninitialized value t
    [all...]
msan_report.cc 34 const char *Origin() { return Magenta(); }
45 Printf("%s", d.Origin());
49 d.Origin(), d.Name(), s, d.Origin(), d.Name(), sep + 1, d.Origin(),
62 VPrintf(1, " raw origin id: %d\n", id);
64 Origin o = Origin::FromRawId(id);
68 Printf(" %sUninitialized value was stored to memory at%s\n", d.Origin(),
81 d.Origin(), d.End())
    [all...]
msan.cc 45 // Function argument origin. Each argument starts at the same offset as the
200 f->origin_history_size > Origin::kMaxDepth) {
202 "Origin history size invalid: %d. Must be 0 (unlimited) or in [1, %d] "
204 f->origin_history_size, Origin::kMaxDepth);
212 "Origin per-stack limit invalid: %d. Must be 0 (unlimited) or in [1, "
236 void PrintWarningWithOrigin(uptr pc, uptr bp, u32 origin) {
239 __msan_origin_tls = origin;
249 (__msan_get_track_origins() && Origin::isValidId(origin)) ? origin : 0
    [all...]
msan_allocator.cc 136 Origin o = Origin::CreateHeapOrigin(stack);
156 Origin o = Origin::CreateHeapOrigin(stack);
  /external/vulkan-validation-layers/libs/glm/gtx/
extend.hpp 53 /// Extends of Length the Origin position using the (Source - Origin) direction.
57 genType const & Origin,
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
XPositionMetric.java 55 return this.getAbsolutePosition(size, PositionMetric.Origin.FROM_BEGINING);
57 return this.getAbsolutePosition(size, PositionMetric.Origin.FROM_END);
59 return this.getAbsolutePosition(size, PositionMetric.Origin.FROM_CENTER);
61 return this.getRelativePosition(size, PositionMetric.Origin.FROM_BEGINING);
63 return this.getRelativePosition(size, PositionMetric.Origin.FROM_END);
65 return this.getRelativePosition(size, PositionMetric.Origin.FROM_CENTER);
YPositionMetric.java 85 return this.getAbsolutePosition(size, PositionMetric.Origin.FROM_BEGINING);
87 return this.getAbsolutePosition(size, PositionMetric.Origin.FROM_END);
89 return this.getAbsolutePosition(size, PositionMetric.Origin.FROM_CENTER);
91 return this.getRelativePosition(size, PositionMetric.Origin.FROM_BEGINING);
93 return this.getRelativePosition(size, PositionMetric.Origin.FROM_END);
95 return this.getRelativePosition(size, PositionMetric.Origin.FROM_CENTER);
PositionMetric.java 21 protected enum Origin {
57 protected float getAbsolutePosition(float size, Origin origin) {
58 switch(origin) {
66 throw new IllegalArgumentException("Unsupported Origin: " + origin);
70 protected float getRelativePosition(float size, Origin origin) {
73 switch(origin) {
81 throw new IllegalArgumentException("Unsupported Origin: " + origin);
    [all...]
  /external/webrtc/webrtc/modules/desktop_capture/mac/
desktop_configuration.h 45 enum Origin { BottomLeftOrigin, TopLeftOrigin };
51 // (the origin is the bottom-left of the primary monitor, and coordinates
53 static MacDesktopConfiguration GetCurrent(Origin origin);
  /external/conscrypt/platform/src/main/java/org/conscrypt/ct/
SignedCertificateTimestamp.java 37 public enum Origin {
49 // origin is implied from the SCT's source and is not encoded in it,
51 private final Origin origin; field in class:SignedCertificateTimestamp
55 DigitallySigned signature, Origin origin) {
61 this.origin = origin;
79 public Origin getOrigin() {
80 return origin;
    [all...]
CTVerifier.java 161 * @param origin used to create the SignedCertificateTimestamp instances.
164 SignedCertificateTimestamp.Origin origin) {
180 SignedCertificateTimestamp sct = SignedCertificateTimestamp.decode(encodedSCT, origin);
198 return getSCTsFromSCTList(data, SignedCertificateTimestamp.Origin.TLS_EXTENSION);
227 SignedCertificateTimestamp.Origin.OCSP_RESPONSE);
249 SignedCertificateTimestamp.Origin.EMBEDDED);
  /frameworks/base/core/java/android/webkit/
WebStorage.java 30 * Cache API can be attributed to an origin {@link WebStorage.Origin}, however
31 * it is not possible to set per-origin quotas. Note that there can be only
34 * The Web SQL Database API provides storage which is private to a given origin.
36 * to an origin. It is also possible to set per-origin quotas.
60 * currently used by an origin for the JavaScript storage APIs.
61 * An origin comprises the host, scheme and port of a URI.
64 public static class Origin {
71 protected Origin(String origin, long quota, long usage)
    [all...]
  /build/kati/
symtab.cc 55 if (v->Origin() == VarOrigin::ENVIRONMENT ||
56 v->Origin() == VarOrigin::ENVIRONMENT_OVERRIDE) {
77 (orig->Origin() == VarOrigin::OVERRIDE ||
78 orig->Origin() == VarOrigin::ENVIRONMENT_OVERRIDE)) {
81 if (orig->Origin() == VarOrigin::COMMAND_LINE &&
82 v->Origin() == VarOrigin::FILE) {
85 if (orig->Origin() == VarOrigin::AUTOMATIC) {
var.h 43 const char* GetOriginStr(VarOrigin origin);
50 virtual VarOrigin Origin() const = 0;
71 explicit SimpleVar(VarOrigin origin);
72 SimpleVar(const string& v, VarOrigin origin);
77 virtual VarOrigin Origin() const override {
98 RecursiveVar(Value* v, VarOrigin origin, StringPiece orig);
103 virtual VarOrigin Origin() const override {
128 virtual VarOrigin Origin() const override {
153 virtual VarOrigin Origin() const override {
154 return v_->Origin();
    [all...]
var.cc 25 const char* GetOriginStr(VarOrigin origin) {
26 switch (origin) {
37 return "*** broken origin ***";
50 SimpleVar::SimpleVar(VarOrigin origin)
51 : origin_(origin) {
54 SimpleVar::SimpleVar(const string& v, VarOrigin origin)
55 : v_(v), origin_(origin) {
77 RecursiveVar::RecursiveVar(Value* v, VarOrigin origin, StringPiece orig)
78 : v_(v), origin_(origin), orig_(orig) {
126 if (v->Origin() == VarOrigin::ENVIRONMENT |
    [all...]
var.go 30 Origin() string
62 func (v *targetSpecificVar) Origin() string {
63 return v.v.Origin()
95 origin string
99 func (v *simpleVar) Origin() string { return v.origin }
118 Origin: v.origin,
127 d.Str(v.origin)
161 func (v *automaticVar) Origin() string { return "automatic"
    [all...]
  /external/skia/tests/
ExifTest.cpp 21 SkCodec::Origin origin = codec->getOrigin(); local
22 REPORTER_ASSERT(r, SkCodec::kTopRight_Origin == origin);
27 origin = codec->getOrigin();
28 REPORTER_ASSERT(r, SkCodec::kTopLeft_Origin == origin);
  /frameworks/compile/mclinker/include/mcld/MC/
ZOption.h 40 Origin,
  /external/conscrypt/platform/src/test/java/org/conscrypt/ct/
SerializationTest.java 38 = SignedCertificateTimestamp.decode(in, SignedCertificateTimestamp.Origin.EMBEDDED);
49 assertEquals(SignedCertificateTimestamp.Origin.EMBEDDED, sct.getOrigin());
66 SignedCertificateTimestamp.decode(sct, SignedCertificateTimestamp.Origin.EMBEDDED);
72 SignedCertificateTimestamp.decode(in, SignedCertificateTimestamp.Origin.EMBEDDED);
79 SignedCertificateTimestamp.decode(in, SignedCertificateTimestamp.Origin.EMBEDDED);
CTVerifierTest.java 156 assertEquals(SignedCertificateTimestamp.Origin.OCSP_RESPONSE,
158 assertEquals(SignedCertificateTimestamp.Origin.TLS_EXTENSION,
  /external/skia/include/codec/
SkCodec.h 116 enum Origin {
133 Origin getOrigin() const { return fOrigin; }
662 Origin = kTopLeft_Origin);
671 Origin = kTopLeft_Origin);
813 const Origin fOrigin;
    [all...]
  /external/clang/include/clang/AST/
CXXInheritance.h 119 CXXRecordDecl *Origin;
217 CXXRecordDecl *getOrigin() const { return Origin; }
218 void setOrigin(CXXRecordDecl *Rec) { Origin = Rec; }
  /external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
MockMethodInterceptor.java 96 @Origin Method invokedMethod,
115 @Origin Method invokedMethod,
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
rgn-over3.d 10 Name\s+Origin\s+Length\s+Attributes
rgn-over6.d 10 Name\s+Origin\s+Length\s+Attributes

Completed in 1271 milliseconds

1 2 3 4