HomeSort by: relevance | last modified time | path
    Searched refs:refs (Results 1 - 25 of 343) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/core/
nouveau_nvkm_core_event.c 36 if (--event->refs[index * event->types_nr + type] == 0) {
49 if (++event->refs[index * event->types_nr + type] == 1) {
63 if (!event->refs || WARN_ON(index >= event->index_nr))
82 if (event->refs) {
83 kfree(event->refs);
84 event->refs = NULL;
94 event->refs = kzalloc(array3_size(index_nr, types_nr,
95 sizeof(*event->refs)),
97 if (!event->refs)
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.dap/
assign.exp 70 set refs [lindex [dap_check_request_and_response "fetch variable" \
76 set desc [dict get $refs body variables]
94 set refs [lindex [dap_check_request_and_response "assign empty to variable" \
100 check_vars "assign empty" [dict get $refs body] 0 empty
102 set refs [lindex [dap_check_request_and_response "assign full to variable" \
108 check_vars "assign full" [dict get $refs body] $saved_ref full
112 gdb_assert {[dict get $refs body namedVariables] == 2} \
115 set num [dict get $refs body variablesReference]
116 set refs [lindex [dap_check_request_and_response \
122 lassign [dict get $refs body variables] one tw
    [all...]
children.exp 70 set refs [lindex [dap_check_request_and_response "fetch variable" \
76 set vars [dict get $refs body variables]
85 set refs [lindex [dap_check_request_and_response "fetch children of variable" \
91 set vars [dict get $refs body variables]
96 foreach var [dict get $refs body variables] {
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dap/
assign.exp 70 set refs [lindex [dap_check_request_and_response "fetch variable" \
76 set desc [dict get $refs body variables]
94 set refs [lindex [dap_check_request_and_response "assign empty to variable" \
100 check_vars "assign empty" [dict get $refs body] 0 empty
102 set refs [lindex [dap_check_request_and_response "assign full to variable" \
108 check_vars "assign full" [dict get $refs body] $saved_ref full
112 gdb_assert {[dict get $refs body namedVariables] == 2} \
115 set num [dict get $refs body variablesReference]
116 set refs [lindex [dap_check_request_and_response \
122 lassign [dict get $refs body variables] one tw
    [all...]
children.exp 70 set refs [lindex [dap_check_request_and_response "fetch variable" \
76 set vars [dict get $refs body variables]
85 set refs [lindex [dap_check_request_and_response "fetch children of variable" \
91 set vars [dict get $refs body variables]
96 foreach var [dict get $refs body variables] {
  /src/external/bsd/openldap/dist/contrib/ldapc++/src/
LDAPResult.cpp 23 char **refs=0; local
28 &matchedDN, &errMsg,&refs,&srvctrls,0);
30 ber_memvfree((void**) refs);
34 if (refs){
35 m_referrals=LDAPUrlList(refs);
36 ber_memvfree((void**) refs);
LDAPAddRequest.h 26 virtual LDAPRequest* followReferral(LDAPMsg* refs);
LDAPDeleteRequest.h 23 virtual LDAPRequest* followReferral(LDAPMsg* refs);
LDAPModifyRequest.h 28 virtual LDAPRequest* followReferral(LDAPMsg* refs);
LDAPDeleteRequest.cpp 58 LDAPRequest* LDAPDeleteRequest::followReferral(LDAPMsg* refs){
61 LDAPUrlList urls= ((LDAPResult*)refs)->getReferralUrls();
  /src/share/doc/papers/pulldown/
Makefile 6 DPSRCS= ${SRCS} refs.r Makefile
10 ${TOOL_REFER} -P -S -e -p ${.CURDIR}/refs.r | \
16 ${TOOL_REFER} -P -S -e -p ${.CURDIR}/refs.r | \
22 ${TOOL_REFER} -P -S -e -p ${.CURDIR}/refs.r | \
  /src/external/gpl2/texinfo/dist/info/
footnotes.c 72 REFERENCE **refs; local
74 refs = info_xrefs_of_node (node);
76 if (refs)
87 for (i = 0; refs[i]; i++)
88 if ((refs[i]->nodename != (char *)NULL) &&
91 (strcmp (refs[i]->nodename, refname) == 0 ||
92 (strncmp (refs[i]->nodename, refname, reflen - 1) == 0 &&
93 refs[i]->nodename[reflen - 1] == '-' &&
94 isdigit (refs[i]->nodename[reflen]))))
111 info_free_references (refs);
    [all...]
  /src/external/bsd/openldap/dist/servers/slapd/
referral.c 205 BerVarray refs; local
220 refs = ch_malloc( ( i + 1 ) * sizeof( struct berval ) );
222 for ( iv = in, jv = refs; !BER_BVISNULL( iv ); iv++ ) {
257 if ( jv == refs ) {
258 ch_free( refs );
259 refs = NULL;
265 return refs;
274 BerVarray refs; local
290 refs = ch_malloc( (i + 1) * sizeof(struct berval));
292 for( iv=attr->a_vals, jv=refs; iv->bv_val != NULL; iv++ )
    [all...]
  /src/external/bsd/openldap/dist/clients/tools/
ldapwhoami.c 118 char *matcheddn = NULL, *text = NULL, **refs = NULL; local
177 &code, &matcheddn, &text, &refs, &ctrls, 0 );
184 tool_perror( "ldap_parse_result", rc, NULL, matcheddn, text, refs );
208 ( matcheddn && *matcheddn ) || ( text && *text ) || refs || ctrls )
220 if( refs ) {
222 for( i=0; refs[i]; i++ ) {
223 printf(_("Referral: %s\n"), refs[i] );
235 ber_memvfree( (void **) refs );
ldapcompare.c 285 char **refs; local
319 rc = ldap_parse_result( ld, res, &code, &matcheddn, &text, &refs, &ctrls, 1 );
328 (matcheddn && *matcheddn) || (text && *text) || (refs && *refs) ) )
341 if( refs ) {
343 for( i=0; refs[i]; i++ ) {
344 printf(_("Referral: %s\n"), refs[i] );
367 ber_memvfree( (void **) refs );
ldapexop.c 80 char *matcheddn = NULL, *text = NULL, **refs = NULL; local
240 &code, &matcheddn, &text, &refs, &ctrls, 0 );
246 tool_perror( "ldap_parse_result", rc, NULL, matcheddn, text, refs );
327 ( matcheddn && *matcheddn ) || ( text && *text ) || refs ) {
338 if( refs ) {
340 for( i=0; refs[i]; i++ ) {
341 printf(_("Referral: %s\n"), refs[i] );
353 ber_memvfree( (void **) refs );
ldapmodrdn.c 250 char *matcheddn=NULL, *text=NULL, **refs=NULL; local
295 rc = ldap_parse_result( ld, res, &code, &matcheddn, &text, &refs, &ctrls, 1 );
304 (matcheddn && *matcheddn) || (text && *text) || (refs && *refs) )
317 if( refs ) {
319 for( i=0; refs[i]; i++ ) {
320 printf(_("Referral: %s\n"), refs[i] );
332 ber_memvfree( (void **) refs );
  /src/external/mpl/bind/dist/lib/isc/include/isc/
refcount.h 145 uint_fast32_t refs = \
149 __func__, func, file, line, isc_tid(), ptr, refs); \
156 uint_fast32_t refs = \
158 if (refs == 0) { \
164 __func__, func, file, line, isc_tid(), ptr, refs); \
170 uint_fast32_t refs = \
174 __func__, func, file, line, isc_tid(), ptr, refs); \
183 uint_fast32_t refs = \
185 if (refs == 0) { \
191 __func__, func, file, line, isc_tid(), ptr, refs); \
    [all...]
  /src/sys/arch/xen/include/
xenio_gntdev.h 62 struct ioctl_gntdev_grant_ref refs[1]; member in struct:ioctl_gntdev_map_grant_ref
  /src/sys/external/bsd/drm2/dist/drm/nouveau/
nouveau_vmm.h 11 int refs; member in struct:nouveau_vma
  /src/external/bsd/openldap/dist/libraries/libldap/
references.c 92 char **refs = NULL; local
106 if ( ber_scanf( &be, "{v" /*}*/, &refs ) == LBER_ERROR ) {
127 *referralsp = refs;
130 LDAP_VFREE( refs );
  /src/external/gpl3/gcc/dist/contrib/
git-add-user-branch.sh 41 git push users/${userpfx} ${start}:refs/users/${user}/heads/${branch}
  /src/external/gpl3/gcc.old/dist/contrib/
git-add-user-branch.sh 41 git push users/${userpfx} ${start}:refs/users/${user}/heads/${branch}
  /src/external/gpl3/gcc/dist/gcc/
tree-ssa-loop-prefetch.cc 228 struct mem_ref *refs; /* References in the group. */ member in struct:mem_ref_group
336 group->refs = NULL;
355 for (aref = &group->refs; *aref; aref = &(*aref)->next)
410 for (ref = groups->refs; ref; ref = next_r)
532 /* Record a memory reference REF to the list REFS. The reference occurs in
537 gather_memory_references_ref (class loop *loop, struct mem_ref_group **refs,
598 agrp = find_or_create_group (refs, base, step);
616 struct mem_ref_group *refs = NULL; local
650 *no_other_refs &= gather_memory_references_ref (loop, &refs,
656 *no_other_refs &= gather_memory_references_ref (loop, &refs,
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
tree-ssa-loop-prefetch.cc 228 struct mem_ref *refs; /* References in the group. */ member in struct:mem_ref_group
336 group->refs = NULL;
355 for (aref = &group->refs; *aref; aref = &(*aref)->next)
410 for (ref = groups->refs; ref; ref = next_r)
532 /* Record a memory reference REF to the list REFS. The reference occurs in
537 gather_memory_references_ref (class loop *loop, struct mem_ref_group **refs,
598 agrp = find_or_create_group (refs, base, step);
616 struct mem_ref_group *refs = NULL; local
650 *no_other_refs &= gather_memory_references_ref (loop, &refs,
656 *no_other_refs &= gather_memory_references_ref (loop, &refs,
    [all...]

Completed in 28 milliseconds

1 2 3 4 5 6 7 8 91011>>