/external/chromium_org/third_party/boringssl/src/crypto/asn1/ |
D | asn1_par.c | 114 const unsigned char *p,*ep,*tot,*op,*opp; in asn1_parse2() local 221 opp=op; in asn1_parse2() 222 if (d2i_ASN1_OBJECT(&o,&opp,len+hl) != NULL) in asn1_parse2() 237 opp=op; in asn1_parse2() 238 ii=d2i_ASN1_BOOLEAN(NULL,&opp,len+hl); in asn1_parse2() 254 opp=op; in asn1_parse2() 255 os=d2i_ASN1_OCTET_STRING(NULL,&opp,len+hl); in asn1_parse2() 258 opp = os->data; in asn1_parse2() 263 if (( (opp[i] < ' ') && in asn1_parse2() 264 (opp[i] != '\n') && in asn1_parse2() [all …]
|
/external/openssl/crypto/asn1/ |
D | asn1_par.c | 115 const unsigned char *p,*ep,*tot,*op,*opp; in asn1_parse2() local 222 opp=op; in asn1_parse2() 223 if (d2i_ASN1_OBJECT(&o,&opp,len+hl) != NULL) in asn1_parse2() 238 opp=op; in asn1_parse2() 239 ii=d2i_ASN1_BOOLEAN(NULL,&opp,len+hl); in asn1_parse2() 255 opp=op; in asn1_parse2() 256 os=d2i_ASN1_OCTET_STRING(NULL,&opp,len+hl); in asn1_parse2() 259 opp = os->data; in asn1_parse2() 264 if (( (opp[i] < ' ') && in asn1_parse2() 265 (opp[i] != '\n') && in asn1_parse2() [all …]
|
/external/chromium_org/third_party/skia/src/pathops/ |
D | SkDQuadIntersection.cpp | 88 for (int opp = 1; opp < 3; ++opp) { in only_end_pts_in_common() local 89 int end = oddMan ^ opp; // choose a value not equal to oddMan in only_end_pts_in_common() 91 end = opp; in only_end_pts_in_common() 93 endPt[opp - 1] = &q1[end]; in only_end_pts_in_common() 98 double opp = endPt[1]->fY - origY; in only_end_pts_in_common() local 99 double sign = (q1[oddMan].fY - origY) * adj - (q1[oddMan].fX - origX) * opp; in only_end_pts_in_common() 104 double test = (q2[n].fY - origY) * adj - (q2[n].fX - origX) * opp; in only_end_pts_in_common()
|
D | SkDCubicIntersection.cpp | 439 for (int opp = 1; opp < 4; ++opp) { in only_end_pts_in_common() local 440 int end = oddMan ^ opp; // choose a value not equal to oddMan in only_end_pts_in_common() 441 endPt[opp - 1] = &c1[end]; in only_end_pts_in_common() 451 double opp = endPt[oppTest]->fY - origY; in only_end_pts_in_common() local 452 if (adj == 0 && opp == 0) { // if the other point equals the test point, ignore it in only_end_pts_in_common() 455 double sign = (c1[oddMan].fY - origY) * adj - (c1[oddMan].fX - origX) * opp; in only_end_pts_in_common() 460 double test = (c2[n].fY - origY) * adj - (c2[n].fX - origX) * opp; in only_end_pts_in_common()
|
D | SkDCubicLineIntersection.cpp | 99 double opp = fLine[1].fY - fLine[0].fY; in intersectRay() local 102 c[n].fX = (fCubic[n].fY - fLine[0].fY) * adj - (fCubic[n].fX - fLine[0].fX) * opp; in intersectRay() 111 c[n].fY = (fCubic[n].fY - fLine[0].fY) * opp in intersectRay()
|
D | SkDQuadLineIntersection.cpp | 125 double opp = fLine[1].fY - fLine[0].fY; in intersectRay() local 128 r[n] = (fQuad[n].fY - fLine[0].fY) * adj - (fQuad[n].fX - fLine[0].fX) * opp; in intersectRay()
|
D | SkPathOpsCommon.cpp | 38 bool* tryAgain, double* midPtr, bool opp) { in contourRangeCheckY() argument 53 bool testOpp = contour->operand() ^ current->operand() ^ opp; in contourRangeCheckY() 279 SkScalar* hitDx, bool* tryAgain, bool* onlyVertical, bool opp) { in rightAngleWinding() argument 284 tHit, hitDx, tryAgain, &test, opp); in rightAngleWinding()
|
D | SkOpSegment.h | 313 double mid, bool opp, bool current) const;
|
/external/skia/src/pathops/ |
D | SkDQuadIntersection.cpp | 88 for (int opp = 1; opp < 3; ++opp) { in only_end_pts_in_common() local 89 int end = oddMan ^ opp; // choose a value not equal to oddMan in only_end_pts_in_common() 91 end = opp; in only_end_pts_in_common() 93 endPt[opp - 1] = &q1[end]; in only_end_pts_in_common() 98 double opp = endPt[1]->fY - origY; in only_end_pts_in_common() local 99 double sign = (q1[oddMan].fY - origY) * adj - (q1[oddMan].fX - origX) * opp; in only_end_pts_in_common() 104 double test = (q2[n].fY - origY) * adj - (q2[n].fX - origX) * opp; in only_end_pts_in_common()
|
D | SkDCubicIntersection.cpp | 439 for (int opp = 1; opp < 4; ++opp) { in only_end_pts_in_common() local 440 int end = oddMan ^ opp; // choose a value not equal to oddMan in only_end_pts_in_common() 441 endPt[opp - 1] = &c1[end]; in only_end_pts_in_common() 451 double opp = endPt[oppTest]->fY - origY; in only_end_pts_in_common() local 452 if (adj == 0 && opp == 0) { // if the other point equals the test point, ignore it in only_end_pts_in_common() 455 double sign = (c1[oddMan].fY - origY) * adj - (c1[oddMan].fX - origX) * opp; in only_end_pts_in_common() 460 double test = (c2[n].fY - origY) * adj - (c2[n].fX - origX) * opp; in only_end_pts_in_common()
|
D | SkDCubicLineIntersection.cpp | 99 double opp = fLine[1].fY - fLine[0].fY; in intersectRay() local 102 c[n].fX = (fCubic[n].fY - fLine[0].fY) * adj - (fCubic[n].fX - fLine[0].fX) * opp; in intersectRay() 111 c[n].fY = (fCubic[n].fY - fLine[0].fY) * opp in intersectRay()
|
D | SkDQuadLineIntersection.cpp | 125 double opp = fLine[1].fY - fLine[0].fY; in intersectRay() local 128 r[n] = (fQuad[n].fY - fLine[0].fY) * adj - (fQuad[n].fX - fLine[0].fX) * opp; in intersectRay()
|
D | SkPathOpsCommon.cpp | 38 bool* tryAgain, double* midPtr, bool opp) { in contourRangeCheckY() argument 53 bool testOpp = contour->operand() ^ current->operand() ^ opp; in contourRangeCheckY() 279 SkScalar* hitDx, bool* tryAgain, bool* onlyVertical, bool opp) { in rightAngleWinding() argument 284 tHit, hitDx, tryAgain, &test, opp); in rightAngleWinding()
|
D | SkOpSegment.h | 311 double mid, bool opp, bool current) const;
|
/external/skia/experimental/Intersection/ |
D | QuadraticImplicit.cpp | 87 for (int opp = 1; opp < 3; ++opp) { in onlyEndPtsInCommon() local 88 int end = oddMan ^ opp; in onlyEndPtsInCommon() 90 end = opp; in onlyEndPtsInCommon() 92 endPt[opp - 1] = &q1[end]; in onlyEndPtsInCommon() 97 double opp = endPt[1]->y - origY; in onlyEndPtsInCommon() local 98 double sign = (q1[oddMan].y - origY) * adj - (q1[oddMan].x - origX) * opp; in onlyEndPtsInCommon() 103 double test = (q2[n].y - origY) * adj - (q2[n].x - origX) * opp; in onlyEndPtsInCommon()
|
D | LineCubicIntersection.cpp | 92 double opp = line[1].y - line[0].y; in intersectRay() local 95 r[n].x = (cubic[n].y - line[0].y) * adj - (cubic[n].x - line[0].x) * opp; in intersectRay()
|
D | LineQuadraticIntersection.cpp | 117 double opp = line[1].y - line[0].y; in intersectRay() local 120 r[n] = (quad[n].y - line[0].y) * adj - (quad[n].x - line[0].x) * opp; in intersectRay()
|
D | Simplify.cpp | 1934 int bumpCoincidentThis(const Span* oTest, bool opp, int index, in bumpCoincidentThis() argument 1938 if (opp) { in bumpCoincidentThis() 1984 bool opp = fOperand ^ other.fOperand; in addTCoincident() local 2001 index = advanceCoincidentThis(oTest, opp, index); in addTCoincident() 2004 index = bumpCoincidentThis(oTest, opp, index, outsideTs); in addTCoincident() 2065 int advanceCoincidentThis(const Span* oTest, bool opp, int index) { in advanceCoincidentThis() argument 2184 bool opp = base->fOperand ^ segment->fOperand; in computeSum() local 2188 if (opp) { in computeSum() 2204 if (opp) { in computeSum() 2229 double mid, bool opp, bool current) const { in crossedSpanY() argument [all …]
|
/external/chromium_org/third_party/skia/experimental/Intersection/ |
D | QuadraticImplicit.cpp | 87 for (int opp = 1; opp < 3; ++opp) { in onlyEndPtsInCommon() local 88 int end = oddMan ^ opp; in onlyEndPtsInCommon() 90 end = opp; in onlyEndPtsInCommon() 92 endPt[opp - 1] = &q1[end]; in onlyEndPtsInCommon() 97 double opp = endPt[1]->y - origY; in onlyEndPtsInCommon() local 98 double sign = (q1[oddMan].y - origY) * adj - (q1[oddMan].x - origX) * opp; in onlyEndPtsInCommon() 103 double test = (q2[n].y - origY) * adj - (q2[n].x - origX) * opp; in onlyEndPtsInCommon()
|
D | LineCubicIntersection.cpp | 92 double opp = line[1].y - line[0].y; in intersectRay() local 95 r[n].x = (cubic[n].y - line[0].y) * adj - (cubic[n].x - line[0].x) * opp; in intersectRay()
|
D | LineQuadraticIntersection.cpp | 117 double opp = line[1].y - line[0].y; in intersectRay() local 120 r[n] = (quad[n].y - line[0].y) * adj - (quad[n].x - line[0].x) * opp; in intersectRay()
|
D | Simplify.cpp | 1934 int bumpCoincidentThis(const Span* oTest, bool opp, int index, in bumpCoincidentThis() argument 1938 if (opp) { in bumpCoincidentThis() 1984 bool opp = fOperand ^ other.fOperand; in addTCoincident() local 2001 index = advanceCoincidentThis(oTest, opp, index); in addTCoincident() 2004 index = bumpCoincidentThis(oTest, opp, index, outsideTs); in addTCoincident() 2065 int advanceCoincidentThis(const Span* oTest, bool opp, int index) { in advanceCoincidentThis() argument 2184 bool opp = base->fOperand ^ segment->fOperand; in computeSum() local 2188 if (opp) { in computeSum() 2204 if (opp) { in computeSum() 2229 double mid, bool opp, bool current) const { in crossedSpanY() argument [all …]
|
/external/tcpdump/ |
D | print-icmp6.c | 672 const struct nd_opt_prefix_info *opp; in icmp6_opt_print() local 717 opp = (struct nd_opt_prefix_info *)op; in icmp6_opt_print() 718 TCHECK(opp->nd_opt_pi_prefix); in icmp6_opt_print() 720 ip6addr_string(&opp->nd_opt_pi_prefix), in icmp6_opt_print() 721 opp->nd_opt_pi_prefix_len, in icmp6_opt_print() 723 … bittok2str(icmp6_opt_pi_flag_values, "none", opp->nd_opt_pi_flags_reserved), in icmp6_opt_print() 724 get_lifetime(EXTRACT_32BITS(&opp->nd_opt_pi_valid_time))); in icmp6_opt_print() 725 … printf(", pref. time %s", get_lifetime(EXTRACT_32BITS(&opp->nd_opt_pi_preferred_time))); in icmp6_opt_print()
|
/external/blktrace/btt/ |
D | output.c | 863 struct __op *opp = arg; in __output_procs() local 864 output_regions(opp->ofp, pip->name, &pip->regions, opp->base); in __output_procs() 865 opp->base += 1.0; in __output_procs()
|
/external/chromium_org/v8/src/mips/ |
D | assembler-mips.h | 370 INLINE(explicit Operand(Object** opp));
|