Home
last modified time | relevance | path

Searched refs:attributes (Results 1 – 25 of 1780) sorted by relevance

12345678910>>...72

/netbsd-src/external/mpl/bind/dist/tests/dns/
H A Drdatasetstats_test.c38 unsigned int attributes; in set_typestats()
40 attributes = 0; in set_typestats()
41 which = DNS_RDATASTATSTYPE_VALUE(type, attributes); in set_typestats()
44 attributes = DNS_RDATASTATSTYPE_ATTR_NXRRSET; in set_typestats()
45 which = DNS_RDATASTATSTYPE_VALUE(type, attributes); in set_typestats()
52 unsigned int attributes; in set_nxdomainstats()
54 attributes = DNS_RDATASTATSTYPE_ATTR_NXDOMAIN; in set_nxdomainstats()
55 which = DNS_RDATASTATSTYPE_VALUE(0, attributes); in set_nxdomainstats()
62 unsigned int attributes; in mark_stale()
64 attributes in mark_stale()
39 unsigned int attributes; set_typestats() local
53 unsigned int attributes; set_nxdomainstats() local
63 unsigned int attributes; mark_stale() local
85 unsigned int attributes; mark_nxdomain_stale() local
99 unsigned int attributes; verify_active_counters() local
130 unsigned int attributes; verify_stale_counters() local
159 unsigned int attributes; verify_ancient_counters() local
[all...]
/netbsd-src/lib/libcurses/
H A Dborder.c111 /* Merge window and background attributes */ in wborder()
171 out.attributes |= in & __ATTRIBUTES; \ in wborder()
249 left.vals[0], left.attributes ); in wborder_set()
251 right.vals[0], right.attributes ); in wborder_set()
253 top.vals[0], top.attributes ); in wborder_set()
255 bottom.vals[0], bottom.attributes ); in wborder_set()
257 topleft.vals[0], topleft.attributes ); in wborder_set()
259 topright.vals[0], topright.attributes ); in wborder_set()
261 botleft.vals[0], botleft.attributes ); in wborder_set()
263 botright.vals[0], botright.attributes ); in wborder_set()
[all...]
H A Daddbytes.c180 cc.attributes = attr; in _cursesi_waddbytes()
210 attr_t attributes; in _cursesi_addbyte()
278 attributes = (win->wattr | attr) & (__ATTRIBUTES & ~__COLOR); in _cursesi_addbyte()
280 attributes |= attr & __COLOR; in _cursesi_addbyte()
282 attributes |= win->wattr & __COLOR; in _cursesi_addbyte()
323 if (attributes & __COLOR) in _cursesi_addbyte()
325 attributes | (win->battr & ~__COLOR); in _cursesi_addbyte()
327 (*lp)->line[*x].attr = attributes | win->battr; in _cursesi_addbyte()
357 attr_t attributes; in _cursesi_addwchar()
388 cc.attributes in _cursesi_addwchar()
207 attr_t attributes; _cursesi_addbyte() local
[all...]
H A Dcchar.c71 *attrs = wcval->attributes; in getcchar()
73 *color_pair = PAIR_NUMBER(wcval->attributes); in getcchar()
113 wcval->attributes = attrs & ~__COLOR; in setcchar()
115 wcval->attributes |= COLOR_PAIR(color_pair); in setcchar()
132 out->attributes |= in & __ATTRIBUTES; in __cursesi_chtype_to_cchar()
137 out->attributes = in & __ATTRIBUTES; in __cursesi_chtype_to_cchar()
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/evp/
H A Devp_pkey.c93 return X509at_get_attr_count(key->attributes); in EVP_PKEY_get_attr_count()
98 return X509at_get_attr_by_NID(key->attributes, nid, lastpos); in EVP_PKEY_get_attr_by_NID()
104 return X509at_get_attr_by_OBJ(key->attributes, obj, lastpos); in EVP_PKEY_get_attr_by_OBJ()
109 return X509at_get_attr(key->attributes, loc); in EVP_PKEY_get_attr()
114 return X509at_delete_attr(key->attributes, loc); in EVP_PKEY_delete_attr()
119 if (X509at_add1_attr(&key->attributes, attr)) in EVP_PKEY_add1_attr()
128 if (X509at_add1_attr_by_OBJ(&key->attributes, obj, type, bytes, len)) in EVP_PKEY_add1_attr_by_OBJ()
137 if (X509at_add1_attr_by_NID(&key->attributes, nid, type, bytes, len)) in EVP_PKEY_add1_attr_by_NID()
146 if (X509at_add1_attr_by_txt(&key->attributes, attrname, type, bytes, len)) in EVP_PKEY_add1_attr_by_txt()
/netbsd-src/external/gpl2/groff/dist/src/utils/xtotroff/
H A Dxtotroff.c56 || p->ascent != 0 || p->descent != 0 || p->attributes != 0; in charExists()
63 unsigned int attributes; in CanonicalizeFontName() local
66 if (!XParseFontName(font_name, &parsed, &attributes)) { in CanonicalizeFontName()
71 attributes &= ~(FontNamePixelSize | FontNameAverageWidth in CanonicalizeFontName()
74 XFormatFontName(&parsed, attributes, canon_font_name); in CanonicalizeFontName()
109 unsigned int attributes; in MapFont() local
118 if (!XParseFontName(font_name, &parsed, &attributes)) { in MapFont()
123 attributes &= ~(FontNamePixelSize | FontNameAverageWidth); in MapFont()
124 attributes |= FontNameResolutionX; in MapFont()
125 attributes |= FontNameResolutionY; in MapFont()
[all …]
/netbsd-src/external/gpl3/gdb/dist/gnulib/import/glthread/
H A Dlock.c265 pthread_rwlockattr_t attributes; in glthread_rwlock_init_for_glibc() local
268 err = pthread_rwlockattr_init (&attributes); in glthread_rwlock_init_for_glibc()
275 err = pthread_rwlockattr_setkind_np (&attributes, in glthread_rwlock_init_for_glibc()
278 err = pthread_rwlock_init(lock, &attributes); in glthread_rwlock_init_for_glibc()
281 pthread_rwlockattr_destroy (&attributes); in glthread_rwlock_init_for_glibc()
535 pthread_mutexattr_t attributes; in glthread_recursive_lock_init_multithreaded() local
538 err = pthread_mutexattr_init (&attributes); in glthread_recursive_lock_init_multithreaded()
541 err = pthread_mutexattr_settype (&attributes, PTHREAD_MUTEX_RECURSIVE); in glthread_recursive_lock_init_multithreaded()
544 pthread_mutexattr_destroy (&attributes); in glthread_recursive_lock_init_multithreaded()
547 err = pthread_mutex_init (lock, &attributes); in glthread_recursive_lock_init_multithreaded()
[all …]
/netbsd-src/crypto/external/cpl/trousers/dist/src/tspi/daa/
H A Dtest_sign.c61 BYTE **attributes = NULL; in main() local
198 attributes = malloc( sizeof(BYTE *) * hDaaCredential->attributesLength); in main()
201 attributes[i] = (BYTE *)malloc( DAA_PARAM_SIZE_F_I / 8); in main()
202 memcpy( attributes[i], in main()
203 hDaaCredential->attributes[i], in main()
206 attributes[i] = NULL; in main()
216 attributes, // in in main()
227 if( attributes != NULL) { in main()
229 if( attributes[i] != NULL) free( attributes[i]); in main()
231 free( attributes); in main()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dattribs.c85 vec<attribute_spec> attributes; member
125 register_scoped_attributes (const struct attribute_spec *attributes, in register_scoped_attributes() argument
143 sa.attributes.create (64); in register_scoped_attributes()
149 for (unsigned i = 0; attributes[i].name != NULL; ++i) in register_scoped_attributes()
151 result->attributes.safe_push (attributes[i]); in register_scoped_attributes()
152 register_scoped_attribute (&attributes[i], result); in register_scoped_attributes()
469 decl_attributes (tree *node, tree attributes, int flags, in decl_attributes() argument
474 if (TREE_TYPE (*node) == error_mark_node || attributes == error_mark_node) in decl_attributes()
484 tree cur_attr = lookup_attribute ("optimize", attributes); in decl_attributes()
488 attributes in decl_attributes()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DTransformMetadata.rst40 metadata), in order to add or remove a loop attributes, a new ``MDNode``
47 loop attributes, any ``llvm.mem.parallel_loop_access`` reference must be
53 Some attributes describe code transformations (unrolling, vectorizing,
85 After a transformation is applied, follow-up attributes are set on the
86 transformed and/or new loop(s). This allows additional attributes
104 If, and only if, no followup is specified, the pass may add attributes itself.
106 all attributes from the original loop excluding its loop vectorizer
107 attributes. To avoid this, an empty followup attribute can be used, e.g.
113 The followup attributes of a transformation that cannot be applied will
115 that any followup-transformation in such attributes requires that its
[all …]
H A DHowToUseAttributes.rst12 do this to support expanding the attributes to encompass more than a handful of
13 attributes --- e.g. command line options. The old way of handling attributes
16 was that attributes could be manipulated with 'or's and 'and's. The
37 Because attributes are no longer represented as a bit mask, you will need to
46 the return type, or the function's parameters. A function's attributes are at
47 index ``AttributeList::FunctionIndex``; the return type's attributes are at
48 index ``AttributeList::ReturnIndex``; and the function's parameters' attributes
54 remove attributes, which result in the creation of a new ``AttributeList``.
68 remove attributes at will. The attributes won't be uniqued until you call the
/netbsd-src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dce/
H A Damdgpu_dce_ipp.c76 const struct dc_cursor_attributes *attributes) in dce_ipp_cursor_set_attributes() argument
85 switch (attributes->color_format) { in dce_ipp_cursor_set_attributes()
105 CURSOR_2X_MAGNIFY, attributes->attribute_flags.bits.ENABLE_MAGNIFICATION, in dce_ipp_cursor_set_attributes()
106 CUR_INV_TRANS_CLAMP, attributes->attribute_flags.bits.INVERSE_TRANSPARENT_CLAMPING); in dce_ipp_cursor_set_attributes()
108 if (attributes->color_format == CURSOR_MODE_MONO) { in dce_ipp_cursor_set_attributes()
125 CURSOR_WIDTH, attributes->width-1, in dce_ipp_cursor_set_attributes()
126 CURSOR_HEIGHT, attributes->height-1); in dce_ipp_cursor_set_attributes()
135 CURSOR_SURFACE_ADDRESS_HIGH, attributes->address.high_part); in dce_ipp_cursor_set_attributes()
138 CURSOR_SURFACE_ADDRESS, attributes->address.low_part); in dce_ipp_cursor_set_attributes()
/netbsd-src/external/bsd/openldap/dist/doc/rfc/
H A Drfc3671.txt29 X.500 collective attributes allow common characteristics to be shared
31 information model for collective attributes and describes use of
32 collective attributes in LDAP (Lightweight Directory Access
34 attributes for use in LDAP.
47 corresponding entries which share certain attributes. An entry
49 attributes subentry [RFC3672]. An entry can belong to several entry
66 called collective attributes. Values of collective attributes are
68 collection. Collective attributes are updated (i.e., modified) via
69 their associated collective attributes subentry.
77 attribute. Like other user attributes, collective attributes are
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/evp/
H A Devp_pkey.c166 return X509at_get_attr_count(key->attributes); in EVP_PKEY_get_attr_count()
171 return X509at_get_attr_by_NID(key->attributes, nid, lastpos); in EVP_PKEY_get_attr_by_NID()
177 return X509at_get_attr_by_OBJ(key->attributes, obj, lastpos); in EVP_PKEY_get_attr_by_OBJ()
182 return X509at_get_attr(key->attributes, loc); in EVP_PKEY_get_attr()
187 return X509at_delete_attr(key->attributes, loc); in EVP_PKEY_delete_attr()
192 if (X509at_add1_attr(&key->attributes, attr)) in EVP_PKEY_add1_attr()
201 if (X509at_add1_attr_by_OBJ(&key->attributes, obj, type, bytes, len)) in EVP_PKEY_add1_attr_by_OBJ()
210 if (X509at_add1_attr_by_NID(&key->attributes, nid, type, bytes, len)) in EVP_PKEY_add1_attr_by_NID()
219 if (X509at_add1_attr_by_txt(&key->attributes, attrname, type, bytes, len)) in EVP_PKEY_add1_attr_by_txt()
/netbsd-src/external/mpl/dhcp/bind/dist/lib/dns/
H A Dname.c122 name->attributes &= ~DNS_NAMEATTR_ABSOLUTE; \
130 ((name->attributes & \
189 name->attributes = 0; in dns_name_invalidate()
278 if ((name->attributes & DNS_NAMEATTR_ABSOLUTE) != 0) { in dns_name_isabsolute()
301 REQUIRE(name->attributes & DNS_NAMEATTR_ABSOLUTE); in dns_name_ismailbox()
356 REQUIRE(name->attributes & DNS_NAMEATTR_ABSOLUTE); in dns_name_ishostname()
519 REQUIRE((name1->attributes & DNS_NAMEATTR_ABSOLUTE) == in dns_name_fullcompare()
520 (name2->attributes & DNS_NAMEATTR_ABSOLUTE)); in dns_name_fullcompare()
672 REQUIRE((name1->attributes & DNS_NAMEATTR_ABSOLUTE) == in dns_name_equal()
673 (name2->attributes & DNS_NAMEATTR_ABSOLUTE)); in dns_name_equal()
[all …]
H A Ddispatch.c109 #define IS_PRIVATE(d) (((d)->attributes & DNS_DISPATCHATTR_PRIVATE) != 0)
213 unsigned int attributes; member
314 unsigned int maxrequests, unsigned int attributes,
963 ev->attributes = 0; in allocate_sevent()
1099 if ((disp->attributes & DNS_DISPATCHATTR_EXCLUSIVE) != 0) { in udp_recv()
1276 rev->attributes = ev->attributes; in udp_recv()
1511 if ((disp->attributes & DNS_DISPATCHATTR_NOLISTEN) != 0) { in startrecv()
1519 if ((disp->attributes & DNS_DISPATCHATTR_EXCLUSIVE) != 0 && in startrecv()
2077 unsigned int attributes, unsigned int mask, in dispatch_find() argument
2085 attributes &= ~(DNS_DISPATCHATTR_PRIVATE | DNS_DISPATCHATTR_EXCLUSIVE); in dispatch_find()
[all …]
/netbsd-src/external/mpl/bind/dist/lib/dns/
H A Dname.c64 * Note: If additional attributes are added that should not be set for
72 name->attributes.absolute = false; \
175 return name->attributes.absolute; in dns_name_reset()
195 REQUIRE(name->attributes.absolute);
250 REQUIRE(name->attributes.absolute); in dns_name_setbuffer()
383 REQUIRE((name1->attributes.absolute) == (name2->attributes.absolute)); in dns_name_ishostname()
494 REQUIRE((name1->attributes.absolute) == (name2->attributes.absolute)); in dns_name_fullcompare()
525 REQUIRE((name1->attributes in dns_name_fullcompare()
[all...]
/netbsd-src/external/cddl/osnet/dist/lib/libzpool/common/
H A Dzfs.d32 #pragma D attributes Evolving/Evolving/ISA provider zfs provider
33 #pragma D attributes Private/Private/Unknown provider zfs module
34 #pragma D attributes Private/Private/Unknown provider zfs function
35 #pragma D attributes Evolving/Evolving/ISA provider zfs name
36 #pragma D attributes Evolving/Evolving/ISA provider zfs args
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/
H A Dsol2.c44 solaris_insert_attributes (tree decl, tree *attributes) in solaris_insert_attributes() argument
56 || lookup_attribute ("aligned", *attributes)) in solaris_insert_attributes()
60 *attributes = tree_cons (get_identifier ("aligned"), value, in solaris_insert_attributes()
61 *attributes); in solaris_insert_attributes()
75 *attributes = tree_cons (get_identifier ("init"), NULL, in solaris_insert_attributes()
76 *attributes); in solaris_insert_attributes()
92 *attributes = tree_cons (get_identifier ("fini"), NULL, in solaris_insert_attributes()
93 *attributes); in solaris_insert_attributes()
/netbsd-src/external/gpl3/gcc/dist/gcc/config/
H A Dsol2.cc45 solaris_insert_attributes (tree decl, tree *attributes) in solaris_insert_attributes() argument
57 || lookup_attribute ("aligned", *attributes)) in solaris_insert_attributes()
61 *attributes = tree_cons (get_identifier ("aligned"), value, in solaris_insert_attributes()
62 *attributes); in solaris_insert_attributes()
76 *attributes = tree_cons (get_identifier ("init"), NULL, in solaris_insert_attributes()
77 *attributes); in solaris_insert_attributes()
93 *attributes = tree_cons (get_identifier ("fini"), NULL, in solaris_insert_attributes()
94 *attributes); in solaris_insert_attributes()
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/kadm5/
H A Dget_s.c170 out->attributes |= ent.entry.flags.postdate ? 0 : KRB5_KDB_DISALLOW_POSTDATED; in kadm5_s_get_principal()
171 out->attributes |= ent.entry.flags.forwardable ? 0 : KRB5_KDB_DISALLOW_FORWARDABLE; in kadm5_s_get_principal()
172 out->attributes |= ent.entry.flags.initial ? KRB5_KDB_DISALLOW_TGT_BASED : 0; in kadm5_s_get_principal()
173 out->attributes |= ent.entry.flags.renewable ? 0 : KRB5_KDB_DISALLOW_RENEWABLE; in kadm5_s_get_principal()
174 out->attributes |= ent.entry.flags.proxiable ? 0 : KRB5_KDB_DISALLOW_PROXIABLE; in kadm5_s_get_principal()
175 out->attributes |= ent.entry.flags.invalid ? KRB5_KDB_DISALLOW_ALL_TIX : 0; in kadm5_s_get_principal()
176 out->attributes |= ent.entry.flags.require_preauth ? KRB5_KDB_REQUIRES_PRE_AUTH : 0; in kadm5_s_get_principal()
177 out->attributes |= ent.entry.flags.require_pwchange ? KRB5_KDB_REQUIRES_PWCHANGE : 0; in kadm5_s_get_principal()
178 out->attributes |= ent.entry.flags.server ? 0 : KRB5_KDB_DISALLOW_SVR; in kadm5_s_get_principal()
179 out->attributes |= ent.entry.flags.change_pw ? KRB5_KDB_PWCHANGE_SERVICE : 0; in kadm5_s_get_principal()
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/x509/
H A Dx509_req.c211 return X509at_get_attr_count(req->req_info.attributes); in X509_REQ_get_attr_count()
216 return X509at_get_attr_by_NID(req->req_info.attributes, nid, lastpos); in X509_REQ_get_attr_by_NID()
222 return X509at_get_attr_by_OBJ(req->req_info.attributes, obj, lastpos); in X509_REQ_get_attr_by_OBJ()
227 return X509at_get_attr(req->req_info.attributes, loc); in X509_REQ_get_attr()
232 X509_ATTRIBUTE *attr = X509at_delete_attr(req->req_info.attributes, loc); in X509_REQ_delete_attr()
241 if (!X509at_add1_attr(&req->req_info.attributes, attr)) in X509_REQ_add1_attr()
251 if (!X509at_add1_attr_by_OBJ(&req->req_info.attributes, obj, in X509_REQ_add1_attr_by_OBJ()
262 if (!X509at_add1_attr_by_NID(&req->req_info.attributes, nid, in X509_REQ_add1_attr_by_NID()
273 if (!X509at_add1_attr_by_txt(&req->req_info.attributes, attrname, in X509_REQ_add1_attr_by_txt()
/netbsd-src/external/bsd/openldap/dist/servers/slapd/schema/
H A Dcollective.schema24 # X.500 collective attributes allow common characteristics to be shared
26 # information model for collective attributes and describes use of
27 # collective attributes in LDAP (Lightweight Directory Access Protocol).
28 # This document provides schema definitions for collective attributes
39 # collective attribute types. By convention, collective attributes are
44 # Non-collective attributes types SHALL NOT subtype collective
45 # attributes.
47 # Collective attributes SHALL NOT be SINGLE-VALUED. Collective
51 # Operational attributes SHALL NOT be defined to be collective.
53 # The remainder of section provides a summary of collective attributes
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dattribs.cc88 vec<attribute_spec> attributes; member
120 register_scoped_attributes (const struct attribute_spec *attributes, in register_scoped_attributes() argument
138 sa.attributes.create (64); in register_scoped_attributes()
147 for (unsigned i = 0; attributes[i].name != NULL; ++i) in register_scoped_attributes()
149 result->attributes.safe_push (attributes[i]); in register_scoped_attributes()
150 register_scoped_attribute (&attributes[i], result); in register_scoped_attributes()
603 decl_attributes (tree *node, tree attributes, int flags, in decl_attributes() argument
608 if (TREE_TYPE (*node) == error_mark_node || attributes == error_mark_node) in decl_attributes()
618 tree cur_attr = lookup_attribute ("optimize", attributes); in decl_attributes()
622 attributes in decl_attributes()
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/x509/
H A Dx509_req.c197 return X509at_get_attr_count(req->req_info.attributes); in X509_REQ_get_attr_count()
202 return X509at_get_attr_by_NID(req->req_info.attributes, nid, lastpos); in X509_REQ_get_attr_by_NID()
208 return X509at_get_attr_by_OBJ(req->req_info.attributes, obj, lastpos); in X509_REQ_get_attr_by_OBJ()
213 return X509at_get_attr(req->req_info.attributes, loc); in X509_REQ_get_attr()
224 attr = X509at_delete_attr(req->req_info.attributes, loc); in X509_REQ_delete_attr()
236 if (!X509at_add1_attr(&req->req_info.attributes, attr)) in X509_REQ_add1_attr()
250 if (!X509at_add1_attr_by_OBJ(&req->req_info.attributes, obj, in X509_REQ_add1_attr_by_OBJ()
265 if (!X509at_add1_attr_by_NID(&req->req_info.attributes, nid, in X509_REQ_add1_attr_by_NID()
280 if (!X509at_add1_attr_by_txt(&req->req_info.attributes, attrname, in X509_REQ_add1_attr_by_txt()

12345678910>>...72