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

/macosx-10.9.5/CPANInternal-140/YAML-Syck/
H A Dnode.c56 m->capa = ALLOC_CT;
57 m->keys = S_ALLOC_N( SYMID, m->capa );
58 m->values = S_ALLOC_N( SYMID, m->capa );
75 s->capa = ALLOC_CT;
76 s->items = S_ALLOC_N( SYMID, s->capa );
191 m->capa = ALLOC_CT;
192 m->keys = S_ALLOC_N( SYMID, m->capa );
193 m->values = S_ALLOC_N( SYMID, m->capa );
208 if ( m->idx > m->capa )
210 m->capa
[all...]
H A Dsyck.h156 long capa; member in struct:_syck_node::__anon616::SyckMap
163 long capa; member in struct:_syck_node::__anon616::SyckSeq
/macosx-10.9.5/ruby-104/ruby/ext/json/fbuffer/
H A Dfbuffer.h53 unsigned long capa; member in struct:FBufferStruct
60 #define FBUFFER_CAPA(fb) (fb->capa)
103 fb->capa = fb->initial_length;
106 for (required = fb->capa; requested > required - fb->len; required <<= 1);
108 if (required > fb->capa) {
110 fb->capa = required;
/macosx-10.9.5/ruby-104/ruby/include/ruby/
H A Dio.h57 char *ptr; /* off + len <= capa */
60 int capa; member in struct:__anon12363
126 (buf).capa = 0;\
H A Druby.h849 long capa; member in union:RString::__anon12374::__anon12375::__anon12376
887 long capa; member in union:RArray::__anon12377::__anon12378::__anon12379
H A Dintern.h304 int capa; member in struct:__anon12362
/macosx-10.9.5/ruby-104/ruby/
H A Darray.c120 ARY_SHARED_ROOT_P(ary) ? RARRAY_LEN(ary) : RARRAY(ary)->as.heap.aux.capa)
125 RARRAY(ary)->as.heap.aux.capa = (n); \
138 (assert(ARY_SHARED_ROOT_P(ary)), RARRAY(ary)->as.heap.aux.capa)
141 RARRAY(ary)->as.heap.aux.capa = (value); \
291 long capa; local
303 capa = ARY_CAPA(ary);
304 if (new_len > capa - (capa >> 6)) {
313 capa = ARY_CAPA(ary);
314 if (new_len > capa) {
390 ary_new(VALUE klass, long capa) argument
417 rb_ary_new2(long capa) argument
465 rb_ary_tmp_new(long capa) argument
1011 long capa; local
1492 long capa; local
[all...]
H A Dstring.c110 RSTRING(str)->as.heap.aux.capa = (capacity);\
116 RSTRING(str)->as.heap.aux.capa = (capacity);\
369 return RSTRING(str)->as.heap.aux.capa;
380 str->as.heap.aux.capa = 0;
409 RSTRING(str)->as.heap.aux.capa = len;
777 rb_str_buf_new(long capa) argument
781 if (capa < STR_BUF_MIN_SIZE) {
782 capa = STR_BUF_MIN_SIZE;
785 RSTRING(str)->as.heap.aux.capa = capa;
1351 long capa = len + expand; local
1387 long capa = len + expand; local
1840 long capa; local
1904 long capa, total, off = -1; local
[all...]
H A Dio.c493 if (*(fptr->rbuf.ptr + fptr->rbuf.capa - 1) == '\r') {
714 fptr->rbuf.capa = (int)len;
716 fptr->rbuf.capa = min_capa;
717 fptr->rbuf.ptr = ALLOC_N(char, fptr->rbuf.capa);
719 if (fptr->rbuf.capa < len + fptr->rbuf.len) {
723 MEMMOVE(fptr->rbuf.ptr+fptr->rbuf.capa-fptr->rbuf.len,
726 fptr->rbuf.off = fptr->rbuf.capa-fptr->rbuf.len;
901 size_t capa; member in struct:io_internal_read_struct
907 size_t capa; member in struct:io_internal_write_struct
914 return read(iis->fd, iis->buf, iis->capa);
[all...]
H A Dregparse.c289 size_t capa)
294 r = (UChar* )xrealloc(dest, capa + 1);
296 r = (UChar* )xmalloc(capa + 1);
306 const UChar* src, const UChar* src_end, size_t capa)
310 r = (UChar* )xmalloc(capa + 1);
1034 if (NSTR(node)->capa != 0 &&
1450 if (NSTR(node)->capa > 0 || (len + addlen > NODE_STR_BUF_SIZE - 1)) {
1452 ptrdiff_t capa = len + addlen + NODE_STR_MARGIN; local
1454 if (capa <= NSTR(node)->capa) {
288 strcat_capa(UChar* dest, UChar* dest_end, const UChar* src, const UChar* src_end, size_t capa) argument
305 strcat_capa_from_static(UChar* dest, UChar* dest_end, const UChar* src, const UChar* src_end, size_t capa) argument
[all...]
H A Dregparse.h172 int capa; /* (allocated size - 1) or 0: use buf[] */ member in struct:__anon12463
H A Dparse.c186 int capa; member in struct:vtable
221 tbl->capa = 8;
222 tbl->tbl = ALLOC_N(ID, tbl->capa);
248 if (tbl->pos == tbl->capa) {
249 tbl->capa = tbl->capa * 2;
250 REALLOC_N(tbl->tbl, ID, tbl->capa);
16766 fake_str.as.heap.aux.capa = len;
17108 fake_str.as.heap.aux.capa = fake_str.as.heap.len;
17131 fake_str.as.heap.aux.capa
[all...]
H A Dparse.y126 int capa;
161 tbl->capa = 8;
162 tbl->tbl = ALLOC_N(ID, tbl->capa);
188 if (tbl->pos == tbl->capa) {
189 tbl->capa = tbl->capa * 2;
190 REALLOC_N(tbl->tbl, ID, tbl->capa);
10270 fake_str.as.heap.aux.capa = len;
10612 fake_str.as.heap.aux.capa = fake_str.as.heap.len;
10635 fake_str.as.heap.aux.capa
[all...]
H A Dthread.c3268 set->capa = FD_SETSIZE;
3300 set->capa = 0;
3314 if (set->fdset->fd_count >= (unsigned)set->capa) {
3315 set->capa = (set->fdset->fd_count / FD_SETSIZE + 1) * FD_SETSIZE;
3316 set->fdset = xrealloc(set->fdset, sizeof(unsigned int) + sizeof(SOCKET) * set->capa);
H A Dregcomp.c78 if (sn->capa == 0) {
87 if (sn->capa == 0) {
/macosx-10.9.5/IOPCIFamily-224.92.1/
H A DIOPCIBridge.cpp2029 IOByteCount capa; local
2034 capa = 0;
2035 if (nub->extendedFindPCICapability(kIOPCIPowerManagementCapability, &capa))
2036 nub->reserved->powerCapability = capa;
2037 capa = 0;
2039 if (nub->extendedFindPCICapability(kIOPCIMSIXCapability, &capa))
2040 nub->reserved->msiCapability = capa;
2045 if (nub->extendedFindPCICapability(kIOPCIMSICapability, &capa))
2046 nub->reserved->msiCapability = capa;
2047 capa
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/imap4/
H A Dimap4.tcl858 proc isableto {chan {capa ""}} {
865 if {$capa eq ""} {
873 set capa [string toupper $capa]
874 expr {[lsearch -exact $info($chan,capability) $capa] != -1}
/macosx-10.9.5/Heimdal-323.92.1/appl/gssmask/
H A Dgssmaestro.c248 int32_t *version, int32_t *capa,
253 ret32(client, *capa);
247 get_version_capa(struct client *client, int32_t *version, int32_t *capa, char **version_str) argument
/macosx-10.9.5/ruby-104/ruby/win32/
H A Dwin32.c2487 if ((UINT)dst->capa < (UINT)max) {
2488 dst->capa = (src->fd_count / FD_SETSIZE + 1) * FD_SETSIZE;
2489 dst->fdset = xrealloc(dst->fdset, sizeof(unsigned int) + sizeof(SOCKET) * dst->capa);
2501 if ((UINT)dst->capa < src->fdset->fd_count) {
2502 dst->capa = (src->fdset->fd_count / FD_SETSIZE + 1) * FD_SETSIZE;
2503 dst->fdset = xrealloc(dst->fdset, sizeof(unsigned int) + sizeof(SOCKET) * dst->capa);
2539 if ((int)dst->fdset->fd_count >= dst->capa) {
2540 dst->capa = (dst->fdset->fd_count / FD_SETSIZE + 1) * FD_SETSIZE;
2541 dst->fdset = xrealloc(dst->fdset, sizeof(unsigned int) + sizeof(SOCKET) * dst->capa);
H A Dfile.c199 fake_str.as.heap.aux.capa = fake_str.as.heap.len;
/macosx-10.9.5/ruby-104/ruby/ext/ripper/
H A Dripper.c186 int capa; member in struct:vtable
221 tbl->capa = 8;
222 tbl->tbl = ALLOC_N(ID, tbl->capa);
248 if (tbl->pos == tbl->capa) {
249 tbl->capa = tbl->capa * 2;
250 REALLOC_N(tbl->tbl, ID, tbl->capa);
16856 fake_str.as.heap.aux.capa = len;
17198 fake_str.as.heap.aux.capa = fake_str.as.heap.len;
17221 fake_str.as.heap.aux.capa
[all...]
H A Dripper.y126 int capa;
161 tbl->capa = 8;
162 tbl->tbl = ALLOC_N(ID, tbl->capa);
188 if (tbl->pos == tbl->capa) {
189 tbl->capa = tbl->capa * 2;
190 REALLOC_N(tbl->tbl, ID, tbl->capa);
10270 fake_str.as.heap.aux.capa = len;
10612 fake_str.as.heap.aux.capa = fake_str.as.heap.len;
10635 fake_str.as.heap.aux.capa
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/nkf/nkf-utf8/
H A Dnkf.c835 long capa; member in struct:__anon12258
845 buf->capa = length;
878 if (buf->capa <= buf->len) {
/macosx-10.9.5/ruby-104/ruby/ext/zlib/
H A Dzlib.c721 RSTRING(z->buf)->as.heap.aux.capa = len;
/macosx-10.9.5/emacs-92/emacs/leim/CXTERM-DIC/
H A DARRAY30.tit1452 capa �� # ---> 3v1-0^1- 0

Completed in 401 milliseconds