キーワード
-
new
_ size (12) -
rb
_ exec _ err (1) -
rb
_ fork _ err (1) -
ruby
_ xcalloc (12) -
ruby
_ xmalloc (12) -
ruby
_ xrealloc (12) -
st
_ init _ numtable _ with _ size (12) -
st
_ init _ strtable _ with _ size (12) -
st
_ init _ table _ with _ size (12)
検索結果
先頭5件
- st
_ table * st _ init _ table _ with _ size(struct st _ hash _ type *type , int size) - static int new
_ size(int size) - st
_ table * st _ init _ numtable _ with _ size(int size) - st
_ table * st _ init _ strtable _ with _ size(int size) - rb
_ pid _ t rb _ fork _ err(int *status , int (*chfunc)(void* , char * , size _ t) , void *charg , VALUE fds , char *errmsg , size _ t errmsg _ buflen)
-
st
_ table * st _ init _ table _ with _ size(struct st _ hash _ type *type , int size) (6217.0) -
st_table を作成する。_with_size はサイズを指定して生成する。 struct st_hash_type はハッシュ値を得る関数と、同値判定を行う 関数を持つ。
...st_table を作成する。_with_size はサイズを指定して生成する。
struct st_hash_type はハッシュ値を得る関数と、同値判定を行う
関数を持つ。... -
static int new
_ size(int size) (6217.0) -
必要なサイズ size から、最適なハッシュエントリの サイズを返す。
...必要なサイズ size から、最適なハッシュエントリの
サイズを返す。... -
st
_ table * st _ init _ numtable _ with _ size(int size) (6201.0) -
キーが int 型であるハッシュテーブルを作成する。 st_init_table() に int 用の操作関数を渡しているだけ。
キーが int 型であるハッシュテーブルを作成する。
st_init_table() に int 用の操作関数を渡しているだけ。 -
st
_ table * st _ init _ strtable _ with _ size(int size) (6201.0) -
キーが char* 型であるハッシュテーブルを作成する。 st_init_table に文字列用の操作関数を渡しているだけ。
キーが char* 型であるハッシュテーブルを作成する。
st_init_table に文字列用の操作関数を渡しているだけ。 -
rb
_ pid _ t rb _ fork _ err(int *status , int (*chfunc)(void* , char * , size _ t) , void *charg , VALUE fds , char *errmsg , size _ t errmsg _ buflen) (201.0) -
この関数は deprecated です。
この関数は deprecated です。 -
int rb
_ exec _ err(const struct rb _ exec _ arg *e , char *errmsg , size _ t errmsg _ buflen) (101.0) -
この関数は deprecated です。
この関数は deprecated です。 -
int rb
_ run _ exec _ options _ err(const struct rb _ exec _ arg *e , struct rb _ exec _ arg *s , char *errmsg , size _ t errmsg _ buflen) (101.0) -
この関数は deprecated です。
この関数は deprecated です。 -
void * ruby
_ xcalloc(long n , long size) (101.0) -
引数と返り値は calloc() と同じです。 ただしメモリ割り当てに失敗したときは GC を行いそれでもだめなときは例外 NoMemoryError を発生します。 つまりこの関数が返り値を返したときは常に割り当ては成功です。
引数と返り値は calloc() と同じです。
ただしメモリ割り当てに失敗したときは
GC を行いそれでもだめなときは例外 NoMemoryError を発生します。
つまりこの関数が返り値を返したときは常に割り当ては成功です。 -
void * ruby
_ xmalloc(long size) (101.0) -
引数と返り値は malloc() と同じ。 ただしメモリ割り当てに失敗したときは GC を行いそれでもだめなときは NoMemoryError を raise する。 つまりこの関数が返り値を返したときは常に割り当ては成功している。
引数と返り値は malloc() と同じ。
ただしメモリ割り当てに失敗したときは
GC を行いそれでもだめなときは NoMemoryError を raise する。
つまりこの関数が返り値を返したときは常に割り当ては成功している。 -
void * ruby
_ xrealloc(void *ptr , long size) (101.0) -
引数と返り値の意味は realloc() と同じ。 ただしメモリ割り当てに失敗したときは GC を行いそれでもだめなときは NoMemoryError を raise する。 つまりこの関数が返り値を返したときは常に割り当ては成功している。
引数と返り値の意味は realloc() と同じ。
ただしメモリ割り当てに失敗したときは
GC を行いそれでもだめなときは NoMemoryError を raise する。
つまりこの関数が返り値を返したときは常に割り当ては成功している。