Home
last modified time | relevance | path

Searched refs:strary (Results 1 – 5 of 5) sorted by relevance

/dports/databases/p5-KyotoCabinet/kyotocabinet-perl-1.20/
H A DKyotoCabinet.xs1295 char** strary = kcmalloc(sizeof(*strary) * max + 1); variable
1301 if (i < max) av_push(av, newSVpv(strary[i], 0));
1302 kcfree(strary[i]);
1308 kcfree(strary);
1324 char** strary = kcmalloc(sizeof(*strary) * max + 1); variable
1325 int64_t num = kcdbmatchregex(db, rbuf, strary, max);
1331 kcfree(strary[i]);
1337 kcfree(strary);
1355 char** strary = kcmalloc(sizeof(*strary) * max + 1); variable
1362 kcfree(strary[i]);
[all …]
/dports/databases/kyotocabinet/kyotocabinet-1.2.79/
H A Dkclangc.cc715 int64_t kcdbmatchprefix(KCDB* db, const char* prefix, char** strary, size_t max) { in kcdbmatchprefix() argument
716 _assert_(db && prefix && strary && max <= MEMMAXSIZ); in kcdbmatchprefix()
728 strary[cnt++] = kbuf; in kcdbmatchprefix()
738 int64_t kcdbmatchregex(KCDB* db, const char* regex, char** strary, size_t max) { in kcdbmatchregex() argument
739 _assert_(db && regex && strary && max <= MEMMAXSIZ); in kcdbmatchregex()
751 strary[cnt++] = kbuf; in kcdbmatchregex()
762 char** strary, size_t max) { in kcdbmatchsimilar() argument
763 _assert_(db && origin && strary && max <= MEMMAXSIZ); in kcdbmatchsimilar()
775 strary[cnt++] = kbuf; in kcdbmatchsimilar()
H A Dkclangc.h800 int64_t kcdbmatchprefix(KCDB* db, const char* prefix, char** strary, size_t max);
813 int64_t kcdbmatchregex(KCDB* db, const char* regex, char** strary, size_t max);
829 char** strary, size_t max);
/dports/lang/ruby26/ruby-2.6.9/
H A Dvm_backtrace.c390 VALUE strary; member
403 rb_gc_mark(bt->strary); in backtrace_mark()
602 if (!bt->strary) { in rb_backtrace_to_str_ary()
603 bt->strary = backtrace_to_str_ary(self, 0, bt->backtrace_size); in rb_backtrace_to_str_ary()
605 return bt->strary; in rb_backtrace_to_str_ary()
686 bt->strary = str; in backtrace_load_data()
H A Dstring.c2989 rb_str_concat_literals(size_t num, const VALUE *strary) in rb_str_concat_literals() argument
2996 if (UNLIKELY(num == 1)) return rb_str_resurrect(strary[0]); in rb_str_concat_literals()
2998 for (i = 0; i < num; ++i) { len += RSTRING_LEN(strary[i]); } in rb_str_concat_literals()
3000 str = rb_str_resurrect(strary[0]); in rb_str_concat_literals()
3005 rb_enc_copy(str, strary[0]); in rb_str_concat_literals()
3010 const VALUE v = strary[i]; in rb_str_concat_literals()