Searched defs:opp (Results 1 - 19 of 19) sorted by relevance

/external/chromium_org/third_party/boringssl/src/crypto/asn1/
H A Dasn1_par.c114 const unsigned char *p,*ep,*tot,*op,*opp; local
221 opp=op;
222 if (d2i_ASN1_OBJECT(&o,&opp,len+hl) != NULL)
237 opp=op;
238 ii=d2i_ASN1_BOOLEAN(NULL,&opp,len+hl);
254 opp=op;
255 os=d2i_ASN1_OCTET_STRING(NULL,&opp,len+hl);
258 opp = os->data;
263 if (( (opp[i] < ' ') &&
264 (opp[
[all...]
/external/openssl/crypto/asn1/
H A Dasn1_par.c115 const unsigned char *p,*ep,*tot,*op,*opp; local
222 opp=op;
223 if (d2i_ASN1_OBJECT(&o,&opp,len+hl) != NULL)
238 opp=op;
239 ii=d2i_ASN1_BOOLEAN(NULL,&opp,len+hl);
255 opp=op;
256 os=d2i_ASN1_OCTET_STRING(NULL,&opp,len+hl);
259 opp = os->data;
264 if (( (opp[i] < ' ') &&
265 (opp[
[all...]
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DLineCubicIntersection.cpp92 double opp = line[1].y - line[0].y; local
95 r[n].x = (cubic[n].y - line[0].y) * adj - (cubic[n].x - line[0].x) * opp;
H A DLineQuadraticIntersection.cpp117 double opp = line[1].y - line[0].y; local
120 r[n] = (quad[n].y - line[0].y) * adj - (quad[n].x - line[0].x) * opp;
H A DQuadraticImplicit.cpp87 for (int opp = 1; opp < 3; ++opp) {
88 int end = oddMan ^ opp;
90 end = opp;
92 endPt[opp - 1] = &q1[end];
97 double opp = endPt[1]->y - origY; local
98 double sign = (q1[oddMan].y - origY) * adj - (q1[oddMan].x - origX) * opp;
103 double test = (q2[n].y - origY) * adj - (q2[n].x - origX) * opp;
/external/chromium_org/third_party/skia/src/pathops/
H A DSkDQuadLineIntersection.cpp125 double opp = fLine[1].fY - fLine[0].fY; local
128 r[n] = (fQuad[n].fY - fLine[0].fY) * adj - (fQuad[n].fX - fLine[0].fX) * opp;
H A DSkDCubicLineIntersection.cpp99 double opp = fLine[1].fY - fLine[0].fY; local
102 c[n].fX = (fCubic[n].fY - fLine[0].fY) * adj - (fCubic[n].fX - fLine[0].fX) * opp;
111 c[n].fY = (fCubic[n].fY - fLine[0].fY) * opp
H A DSkDQuadIntersection.cpp88 for (int opp = 1; opp < 3; ++opp) {
89 int end = oddMan ^ opp; // choose a value not equal to oddMan
91 end = opp;
93 endPt[opp - 1] = &q1[end];
98 double opp = endPt[1]->fY - origY; local
99 double sign = (q1[oddMan].fY - origY) * adj - (q1[oddMan].fX - origX) * opp;
104 double test = (q2[n].fY - origY) * adj - (q2[n].fX - origX) * opp;
H A DSkPathOpsCommon.cpp38 bool* tryAgain, double* midPtr, bool opp) {
53 bool testOpp = contour->operand() ^ current->operand() ^ opp;
279 SkScalar* hitDx, bool* tryAgain, bool* onlyVertical, bool opp) {
284 tHit, hitDx, tryAgain, &test, opp);
36 contourRangeCheckY(const SkTArray<SkOpContour*, true>& contourList, SkOpSegment** currentPtr, int* indexPtr, int* endIndexPtr, double* bestHit, SkScalar* bestDx, bool* tryAgain, double* midPtr, bool opp) argument
277 rightAngleWinding(const SkTArray<SkOpContour*, true>& contourList, SkOpSegment** currentPtr, int* indexPtr, int* endIndexPtr, double* tHit, SkScalar* hitDx, bool* tryAgain, bool* onlyVertical, bool opp) argument
/external/skia/experimental/Intersection/
H A DLineCubicIntersection.cpp92 double opp = line[1].y - line[0].y; local
95 r[n].x = (cubic[n].y - line[0].y) * adj - (cubic[n].x - line[0].x) * opp;
H A DLineQuadraticIntersection.cpp117 double opp = line[1].y - line[0].y; local
120 r[n] = (quad[n].y - line[0].y) * adj - (quad[n].x - line[0].x) * opp;
H A DQuadraticImplicit.cpp87 for (int opp = 1; opp < 3; ++opp) {
88 int end = oddMan ^ opp;
90 end = opp;
92 endPt[opp - 1] = &q1[end];
97 double opp = endPt[1]->y - origY; local
98 double sign = (q1[oddMan].y - origY) * adj - (q1[oddMan].x - origX) * opp;
103 double test = (q2[n].y - origY) * adj - (q2[n].x - origX) * opp;
/external/skia/src/pathops/
H A DSkDQuadLineIntersection.cpp125 double opp = fLine[1].fY - fLine[0].fY; local
128 r[n] = (fQuad[n].fY - fLine[0].fY) * adj - (fQuad[n].fX - fLine[0].fX) * opp;
H A DSkDCubicLineIntersection.cpp99 double opp = fLine[1].fY - fLine[0].fY; local
102 c[n].fX = (fCubic[n].fY - fLine[0].fY) * adj - (fCubic[n].fX - fLine[0].fX) * opp;
111 c[n].fY = (fCubic[n].fY - fLine[0].fY) * opp
H A DSkDQuadIntersection.cpp88 for (int opp = 1; opp < 3; ++opp) {
89 int end = oddMan ^ opp; // choose a value not equal to oddMan
91 end = opp;
93 endPt[opp - 1] = &q1[end];
98 double opp = endPt[1]->fY - origY; local
99 double sign = (q1[oddMan].fY - origY) * adj - (q1[oddMan].fX - origX) * opp;
104 double test = (q2[n].fY - origY) * adj - (q2[n].fX - origX) * opp;
H A DSkPathOpsCommon.cpp38 bool* tryAgain, double* midPtr, bool opp) {
53 bool testOpp = contour->operand() ^ current->operand() ^ opp;
279 SkScalar* hitDx, bool* tryAgain, bool* onlyVertical, bool opp) {
284 tHit, hitDx, tryAgain, &test, opp);
36 contourRangeCheckY(const SkTArray<SkOpContour*, true>& contourList, SkOpSegment** currentPtr, int* indexPtr, int* endIndexPtr, double* bestHit, SkScalar* bestDx, bool* tryAgain, double* midPtr, bool opp) argument
277 rightAngleWinding(const SkTArray<SkOpContour*, true>& contourList, SkOpSegment** currentPtr, int* indexPtr, int* endIndexPtr, double* tHit, SkScalar* hitDx, bool* tryAgain, bool* onlyVertical, bool opp) argument
/external/tcpdump/
H A Dprint-icmp6.c672 const struct nd_opt_prefix_info *opp; local
717 opp = (struct nd_opt_prefix_info *)op;
718 TCHECK(opp->nd_opt_pi_prefix);
720 ip6addr_string(&opp->nd_opt_pi_prefix),
721 opp->nd_opt_pi_prefix_len,
723 bittok2str(icmp6_opt_pi_flag_values, "none", opp->nd_opt_pi_flags_reserved),
724 get_lifetime(EXTRACT_32BITS(&opp->nd_opt_pi_valid_time)));
725 printf(", pref. time %s", get_lifetime(EXTRACT_32BITS(&opp->nd_opt_pi_preferred_time)));
/external/blktrace/btt/
H A Doutput.c863 struct __op *opp = arg; local
864 output_regions(opp->ofp, pip->name, &pip->regions, opp->base);
865 opp->base += 1.0;
/external/qemu/disas/
H A Dmips.c3484 const struct mips_opcode *opp)
3762 && strcmp (opp->name, "jalx") == 0)
3895 ((opp->pinfo & (FP_D | FP_S)) != 0
3476 print_insn_args(const char *d, register unsigned long int l, bfd_vma pc, struct disassemble_info *info, const struct mips_opcode *opp) argument

Completed in 1336 milliseconds