Searched refs:cv (Results 1 - 25 of 139) sorted by relevance

123456

/macosx-10.9.5/tcl-102/tcl84/tcl/generic/
H A Dregc_cvec.c45 struct cvec *cv; local
50 cv = (struct cvec *)MALLOC(n);
51 if (cv == NULL) {
54 cv->chrspace = nchrs;
55 cv->chrs = (chr *)&cv->mcces[nmcces]; /* chrs just after MCCE ptrs */
56 cv->mccespace = nmcces;
57 cv->ranges = cv->chrs + nchrs + nmcces*(MAXMCCE+1);
58 cv
[all...]
H A Dregc_locale.c553 allmcces(v, cv)
555 struct cvec *cv; /* this is supposed to have enough room */
557 return clearcvec(cv);
614 struct cvec *cv; local
623 cv = getcvec(v, 0, 1, 0);
625 addrange(cv, a, b);
626 return cv;
638 cv = getcvec(v, nchrs, 0, 0);
642 addchr(cv, c);
647 addchr(cv, l
687 struct cvec *cv; local
724 struct cvec *cv = NULL; local
933 struct cvec *cv; local
[all...]
/macosx-10.9.5/tcl-102/tcl/tcl/generic/
H A Dregc_cvec.c49 struct cvec *cv = (struct cvec *) MALLOC(n);
51 if (cv == NULL) {
54 cv->chrspace = nchrs;
55 cv->chrs = (chr *)(((char *)cv)+sizeof(struct cvec));
56 cv->ranges = cv->chrs + nchrs;
57 cv->rangespace = nranges;
58 return clearcvec(cv);
69 struct cvec *cv) /* characte
48 struct cvec *cv = (struct cvec *) MALLOC(n); local
66 clearcvec( struct cvec *cv) argument
80 addchr( struct cvec *cv, pchr c) argument
92 addrange( struct cvec *cv, pchr from, pchr to) argument
134 freecvec( struct cvec *cv) argument
[all...]
H A Dregc_locale.c680 struct cvec *cv;
689 cv = getcvec(v, 0, 1);
691 addrange(cv, a, b);
692 return cv;
703 cv = getcvec(v, nchrs, 0);
707 addchr(cv, c);
712 addchr(cv, lc);
715 addchr(cv, uc);
718 addchr(cv, tc);
722 return cv;
676 struct cvec *cv; local
747 struct cvec *cv; local
790 struct cvec *cv = NULL; local
1010 struct cvec *cv; local
[all...]
/macosx-10.9.5/screen-22/screen/
H A Dlayer.h75 struct canvas *oldcvlist, *cv; \
81 for (cv = flayer->l_cvlist; cv; cv = cv->c_lnext) \
82 cv->c_layer = flayer; \
85 for (cv = flayer->l_cvlist; cv; cv = cv
[all...]
H A Dlayer.c90 struct canvas *cv; local
98 for (cv = l->l_cvlist; cv; cv = cv->c_lnext)
100 display = cv->c_display;
103 if (cv != D_forecv)
105 x2 = x + cv->c_xoff;
106 y2 = y + cv->c_yoff;
108 if (x2 < cv
135 struct canvas *cv; local
187 struct canvas *cv; local
249 struct canvas *cv; local
302 struct canvas *cv; local
339 struct canvas *cv; local
399 struct canvas *cv; local
469 struct canvas *cv; local
506 struct canvas *cv; local
577 struct canvas *cv; local
640 struct canvas *cv; local
658 struct canvas *cv, *cvlist, *cvlnext; local
777 struct canvas *cv; local
794 struct canvas *cv; local
809 struct canvas *cv; local
826 struct canvas *cv; local
843 struct canvas *cv; local
891 struct canvas *cv, *ncv; local
932 struct canvas *cv, *cvp, **cvpp; local
1021 struct canvas *cv, *ocv; local
1092 struct canvas *cv; local
[all...]
H A Dresize.c149 struct canvas *cv, **cvpp; local
170 for (cvpp = &D_cvlist; (cv = *cvpp); )
175 SetCanvasWindow(cv, 0);
176 *cvpp = cv->c_next;
177 free(cv);
178 if (D_forecv == cv)
182 hn = (cv->c_ye - cv->c_ys + 1) * he / D_height;
185 if (hn + 2 >= h || cv->c_next == 0)
187 if ((!captionalways && cv
257 struct canvas *cv; local
366 struct canvas *cv; local
[all...]
H A Ddisplay.c315 struct canvas *cv, *cvp; local
382 cv = display->d_cvlist;
386 cv = display->d_cvlist;
400 for (; cv; cv = cvp)
402 cvp = cv->c_next;
403 FreeCanvas(cv);
419 struct canvas *cv; local
422 if ((cv = (struct canvas *)calloc(1, sizeof *cv))
483 struct canvas *cv, **cvpp; local
548 struct canvas *cv, **cvpp; local
589 struct canvas *cv, **cvpp; local
613 struct canvas *cv; local
1142 struct canvas *cv, *cvlist, *cvlnext; local
1410 struct canvas *cv; local
2477 struct canvas *cv; local
2511 struct canvas *cv, *lcv, *cvlist, *cvlnext; local
3459 struct canvas *cv; local
3675 struct canvas *cv = (struct canvas *)data; local
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/asm/
H A DClassAdapter.java44 protected ClassVisitor cv; field in class:ClassAdapter
49 * @param cv the class visitor to which this adapter must delegate calls.
51 public ClassAdapter(final ClassVisitor cv) { argument
52 this.cv = cv;
63 cv.visit(version, access, name, signature, superName, interfaces);
67 cv.visitSource(source, debug);
75 cv.visitOuterClass(owner, name, desc);
82 return cv.visitAnnotation(desc, visible);
86 cv
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Support/
H A DValgrind.h28 const volatile void *cv);
30 const volatile void *cv);
52 #define TsanHappensBefore(cv) \
53 AnnotateHappensBefore(__FILE__, __LINE__, cv)
56 #define TsanHappensAfter(cv) \
57 AnnotateHappensAfter(__FILE__, __LINE__, cv)
67 #define TsanHappensBefore(cv)
68 #define TsanHappensAfter(cv)
/macosx-10.9.5/CPANInternal-140/Sub-Name/
H A DName.xs30 CV *cv = NULL;
38 cv = (CV *) SvRV(sub);
40 cv = GvCVu(sub);
46 cv = GvCVu(gv);
47 if (!cv)
49 if (SvTYPE(cv) != SVt_PVCV && SvTYPE(cv) != SVt_PVFM)
68 if (CvPADLIST(cv)) {
70 av_store((AV *) AvARRAY(CvPADLIST(cv))[0], 0, (SV *) gv);
75 MAGIC *mg = SvMAGIC(cv);
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/struct/graph/
H A Dwalk.h31 int* cc, Tcl_Obj*** cv);
35 int cc, Tcl_Obj** cv);
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/locks/win32/
H A Dthread_cond.c38 apr_thread_cond_t *cv; local
40 cv = apr_pcalloc(pool, sizeof(**cond));
41 if (cv == NULL) {
45 cv->semaphore = CreateSemaphore(NULL, 0, LONG_MAX, NULL);
46 if (cv->semaphore == NULL) {
50 *cond = cv;
51 cv->pool = pool;
52 InitializeCriticalSection(&cv->csection);
53 apr_pool_cleanup_register(cv->pool, cv, thread_cond_cleanu
[all...]
/macosx-10.9.5/apr-30/apr/apr/locks/win32/
H A Dthread_cond.c38 apr_thread_cond_t *cv; local
40 cv = apr_pcalloc(pool, sizeof(**cond));
41 if (cv == NULL) {
45 cv->semaphore = CreateSemaphore(NULL, 0, LONG_MAX, NULL);
46 if (cv->semaphore == NULL) {
50 *cond = cv;
51 cv->pool = pool;
52 InitializeCriticalSection(&cv->csection);
53 apr_pool_cleanup_register(cv->pool, cv, thread_cond_cleanu
[all...]
/macosx-10.9.5/apache-786.1/httpd/server/
H A Dutil_debug.c99 AP_DECLARE(void *) ap_get_module_config(const ap_conf_vector_t *cv,
103 AP_DECLARE(void *) ap_get_module_config(const ap_conf_vector_t *cv, argument
106 return ((void **)cv)[m->module_index];
116 * @deffunc void ap_set_module_config(ap_conf_vector_t *cv, const module *m, void *val)
120 AP_DECLARE(void) ap_set_module_config(ap_conf_vector_t *cv, const module *m,
124 AP_DECLARE(void) ap_set_module_config(ap_conf_vector_t *cv, const module *m, argument
127 ((void **)cv)[m->module_index] = val;
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A DValgrind.cpp61 const volatile void *cv) {}
63 const volatile void *cv) {}
60 AnnotateHappensBefore(const char *file, int line, const volatile void *cv) argument
62 AnnotateHappensAfter(const char *file, int line, const volatile void *cv) argument
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/tm/
H A Dtmxtouch.c45 Tv_t cv; local
76 cv.tv_sec = tmxsec(ct);
77 cv.tv_nsec = tmxnsec(ct);
78 cp = &cv;
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/back-perl/
H A Dperl_back.h59 # define PERL_BACK_BOOT_DYNALOADER_PARAMS pTHX, CV *cv
63 # define PERL_BACK_BOOT_DYNALOADER_PARAMS CV *cv
/macosx-10.9.5/Security-55471.14.18/include/security_cryptkit/
H A DgiantPort_i486.h119 #define VectorMultiply(pd, cv, cl, pv) vectorMult_x86(pd, cv, cl, pv)
/macosx-10.9.5/Security-55471.14.18/libsecurity_cryptkit/lib/
H A DgiantPort_i486.h119 #define VectorMultiply(pd, cv, cl, pv) vectorMult_x86(pd, cv, cl, pv)
/macosx-10.9.5/cxxfilt-11/cxxfilt/bfd/
H A Dmep-relocs.pl103 my ($bits, $left, $right, $ci, $c, $cv);
112 $cv = ord($c) - ord('0');
113 $cv -= ord('a') - ord('9') - 1 if $cv > 9;
114 $right = $cv unless $right < $cv;
115 $bits = $cv+1 unless $bits > $cv+1;
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/libldap_r/
H A Dthr_thr.c108 ldap_pvt_thread_cond_broadcast( ldap_pvt_thread_cond_t *cv )
110 return( cond_broadcast( cv ) );
121 ldap_pvt_thread_cond_destroy( ldap_pvt_thread_cond_t *cv )
123 return( cond_destroy( cv ) );
/macosx-10.9.5/CPANInternal-140/Sub-Identify/lib/Sub/
H A DIdentify.pm38 my $cv = B::svref_2object($coderef);
39 $cv->isa('B::CV') or return;
41 $cv->GV->isa('B::SPECIAL') and return;
43 return ($cv->GV->STASH->NAME, $cv->GV->NAME);
/macosx-10.9.5/CPANInternal-140/Sub-Identify-0.04/lib/Sub/
H A DIdentify.pm38 my $cv = B::svref_2object($coderef);
39 $cv->isa('B::CV') or return;
41 $cv->GV->isa('B::SPECIAL') and return;
43 return ($cv->GV->STASH->NAME, $cv->GV->NAME);
/macosx-10.9.5/ruby-104/ruby/test/ruby/
H A Dtest_basicinstructions.rb431 @@cv = 'CVarA@@cv'
432 def self.cv() @@cv end singleton method in class:TestBasicInstructions.CVarA
433 def self.cv=(v) @@cv = v end singleton method in class:TestBasicInstructions.CVarA
435 def cv2() @@cv end
437 def cv() @@cv end method in class:TestBasicInstructions
438 def cv
[all...]

Completed in 159 milliseconds

123456