HomeSort by relevance Sort by last modified time
    Searched defs:xclass (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
a_bool.c 83 int inf,tag,xclass; local
87 inf=ASN1_get_object(&p,&len,&tag,&xclass,length);
a_bytes.c 73 int inf,tag,xclass; local
77 inf=ASN1_get_object(&p,&len,&tag,&xclass,length);
131 int i2d_ASN1_bytes(ASN1_STRING *a, unsigned char **pp, int tag, int xclass)
150 ASN1_put_object(&p,constructed,ret,tag,xclass);
164 int inf,tag,xclass; local
175 inf=ASN1_get_object(&p,&len,&tag,&xclass,length);
197 c.xclass=Pclass;
283 if (d2i_ASN1_bytes(&os,&c->p,c->max-c->p,c->tag,c->xclass)
asn1_par.c 65 static int asn1_print_info(BIO *bp, int tag, int xclass,int constructed,
69 static int asn1_print_info(BIO *bp, int tag, int xclass, int constructed,
84 if ((xclass & V_ASN1_PRIVATE) == V_ASN1_PRIVATE)
86 else if ((xclass & V_ASN1_CONTEXT_SPECIFIC) == V_ASN1_CONTEXT_SPECIFIC)
88 else if ((xclass & V_ASN1_APPLICATION) == V_ASN1_APPLICATION)
117 int tag,xclass,ret=0; local
135 j=ASN1_get_object(&p,&len,&tag,&xclass,length);
164 if (!asn1_print_info(bp,tag,xclass,j,(indent)?depth:0))
197 else if (xclass != 0)
402 if ((tag == V_ASN1_EOC) && (xclass == 0)
    [all...]
a_int.c 278 int inf,tag,xclass; local
290 inf=ASN1_get_object(&p,&len,&tag,&xclass,length);
a_object.c 263 int tag,xclass; local
267 inf=ASN1_get_object(&p,&len,&tag,&xclass,length);
asn1_lib.c 100 int tag,xclass,inf; local
105 xclass=(*p&V_ASN1_PRIVATE);
131 *pclass=xclass;
196 int xclass)
202 i|=(xclass&V_ASN1_PRIVATE);
319 c->inf=ASN1_get_object(&(c->p),&(c->slen),&(c->tag),&(c->xclass),
asn1.h 182 int xclass; /* class from last 'get object' */ member in struct:asn1_ctx_st
197 int xclass; /* class from last 'get object' */ member in struct:asn1_const_ctx_st
    [all...]
  /external/openssl/crypto/asn1/
a_bool.c 83 int inf,tag,xclass; local
87 inf=ASN1_get_object(&p,&len,&tag,&xclass,length);
a_bytes.c 73 int inf,tag,xclass; local
77 inf=ASN1_get_object(&p,&len,&tag,&xclass,length);
131 int i2d_ASN1_bytes(ASN1_STRING *a, unsigned char **pp, int tag, int xclass)
150 ASN1_put_object(&p,constructed,ret,tag,xclass);
164 int inf,tag,xclass; local
175 inf=ASN1_get_object(&p,&len,&tag,&xclass,length);
197 c.xclass=Pclass;
283 if (d2i_ASN1_bytes(&os,&c->p,c->max-c->p,c->tag,c->xclass)
asn1_par.c 65 static int asn1_print_info(BIO *bp, int tag, int xclass,int constructed,
69 static int asn1_print_info(BIO *bp, int tag, int xclass, int constructed,
84 if ((xclass & V_ASN1_PRIVATE) == V_ASN1_PRIVATE)
86 else if ((xclass & V_ASN1_CONTEXT_SPECIFIC) == V_ASN1_CONTEXT_SPECIFIC)
88 else if ((xclass & V_ASN1_APPLICATION) == V_ASN1_APPLICATION)
117 int tag,xclass,ret=0; local
135 j=ASN1_get_object(&p,&len,&tag,&xclass,length);
164 if (!asn1_print_info(bp,tag,xclass,j,(indent)?depth:0))
197 else if (xclass != 0)
402 if ((tag == V_ASN1_EOC) && (xclass == 0)
    [all...]
a_int.c 278 int inf,tag,xclass; local
290 inf=ASN1_get_object(&p,&len,&tag,&xclass,length);
a_object.c 263 int tag,xclass; local
267 inf=ASN1_get_object(&p,&len,&tag,&xclass,length);
asn1_lib.c 100 int tag,xclass,inf; local
105 xclass=(*p&V_ASN1_PRIVATE);
131 *pclass=xclass;
196 int xclass)
202 i|=(xclass&V_ASN1_PRIVATE);
319 c->inf=ASN1_get_object(&(c->p),&(c->slen),&(c->tag),&(c->xclass),
asn1.h 182 int xclass; /* class from last 'get object' */ member in struct:asn1_ctx_st
197 int xclass; /* class from last 'get object' */ member in struct:asn1_const_ctx_st
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/
xm_dd.c 71 const int xclass = xmesa->xm_visual->visualType; local
79 if (xclass == GLX_TRUE_COLOR || xclass == GLX_DIRECT_COLOR) {
xm_api.c 562 const int xclass = v->visualType; local
574 if (xclass == GLX_TRUE_COLOR || xclass == GLX_DIRECT_COLOR) {
826 const int xclass = v->visualType; local
827 if (xclass == GLX_TRUE_COLOR || xclass == GLX_DIRECT_COLOR) {
    [all...]
fakeglx.c 522 get_visual( Display *dpy, int scr, unsigned int depth, int xclass )
533 temp.CLASS = xclass;
538 if (depth==default_depth && xclass==default_class) {
550 if (vis && depth > 24 && (xclass==TrueColor || xclass==DirectColor)) {
579 int depth, xclass = -1; local
591 if (strcmp(type,"TrueColor")==0) xclass = TrueColor;
592 else if (strcmp(type,"DirectColor")==0) xclass = DirectColor;
593 else if (strcmp(type,"GrayScale")==0) xclass = GrayScale;
594 else if (strcmp(type,"StaticGray")==0) xclass = StaticGray
622 int xclass, visclass = 0; local
    [all...]
  /external/mesa3d/src/mesa/drivers/x11/
xm_dd.c 71 const int xclass = xmesa->xm_visual->visualType; local
79 if (xclass == GLX_TRUE_COLOR || xclass == GLX_DIRECT_COLOR) {
xm_api.c 562 const int xclass = v->visualType; local
574 if (xclass == GLX_TRUE_COLOR || xclass == GLX_DIRECT_COLOR) {
826 const int xclass = v->visualType; local
827 if (xclass == GLX_TRUE_COLOR || xclass == GLX_DIRECT_COLOR) {
    [all...]
fakeglx.c 522 get_visual( Display *dpy, int scr, unsigned int depth, int xclass )
533 temp.CLASS = xclass;
538 if (depth==default_depth && xclass==default_class) {
550 if (vis && depth > 24 && (xclass==TrueColor || xclass==DirectColor)) {
579 int depth, xclass = -1; local
591 if (strcmp(type,"TrueColor")==0) xclass = TrueColor;
592 else if (strcmp(type,"DirectColor")==0) xclass = DirectColor;
593 else if (strcmp(type,"GrayScale")==0) xclass = GrayScale;
594 else if (strcmp(type,"StaticGray")==0) xclass = StaticGray
622 int xclass, visclass = 0; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/glx/xlib/
xm_api.c 574 const int xclass = v->visualType; local
575 if (xclass != GLX_TRUE_COLOR && xclass == !GLX_DIRECT_COLOR) {
738 const int xclass = v->visualType; local
739 if (xclass == GLX_TRUE_COLOR || xclass == GLX_DIRECT_COLOR) {
    [all...]
glx_api.c 377 get_visual( Display *dpy, int scr, unsigned int depth, int xclass )
388 temp.CLASS = xclass;
393 if (depth==default_depth && xclass==default_class) {
405 if (vis && depth > 24 && (xclass==TrueColor || xclass==DirectColor)) {
433 int depth, xclass = -1; local
445 if (strcmp(type,"TrueColor")==0) xclass = TrueColor;
446 else if (strcmp(type,"DirectColor")==0) xclass = DirectColor;
447 else if (strcmp(type,"PseudoColor")==0) xclass = PseudoColor;
448 else if (strcmp(type,"StaticColor")==0) xclass = StaticColor
480 int xclass, visclass = 0; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/glx/xlib/
xm_api.c 574 const int xclass = v->visualType; local
575 if (xclass != GLX_TRUE_COLOR && xclass == !GLX_DIRECT_COLOR) {
738 const int xclass = v->visualType; local
739 if (xclass == GLX_TRUE_COLOR || xclass == GLX_DIRECT_COLOR) {
    [all...]
glx_api.c 377 get_visual( Display *dpy, int scr, unsigned int depth, int xclass )
388 temp.CLASS = xclass;
393 if (depth==default_depth && xclass==default_class) {
405 if (vis && depth > 24 && (xclass==TrueColor || xclass==DirectColor)) {
433 int depth, xclass = -1; local
445 if (strcmp(type,"TrueColor")==0) xclass = TrueColor;
446 else if (strcmp(type,"DirectColor")==0) xclass = DirectColor;
447 else if (strcmp(type,"PseudoColor")==0) xclass = PseudoColor;
448 else if (strcmp(type,"StaticColor")==0) xclass = StaticColor
480 int xclass, visclass = 0; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
asn1.h 182 int xclass; /* class from last 'get object' */ member in struct:asn1_ctx_st
197 int xclass; /* class from last 'get object' */ member in struct:asn1_const_ctx_st
    [all...]

Completed in 426 milliseconds

1 2