Home
last modified time | relevance | path

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

/dports/lang/chicken5/chicken-5.3.0/
H A Druntime.c1332 if(words >= C_bytestowords(stack_size)) in C_check_nursery_minimum()
2869 *ptr = p + 1 + C_bytestowords(len); in C_string_aligned8()
3202 n = (h & C_BYTEBLOCK_BIT) ? C_bytestowords(n) : n; in C_scratch_alloc()
10108 if(!C_demand(C_bytestowords(bytes))) {
10154 else v0 = C_alloc(C_bytestowords(bytes));
11057 a = C_alloc((C_bytestowords(num) + 1));
11114 a = C_alloc((C_bytestowords(radix) + 1));
11366 if(!C_demand(C_bytestowords(C_unfix(n))))
11571 a = C_alloc(2 + C_bytestowords(strlen(str)));
11587 a = C_alloc(2 + C_bytestowords(strlen(C_MACHINE_TYPE)));
[all …]
H A Dchicken.h453 #define C_SIZEOF_STRING(n) (C_bytestowords(n) + 2)
810 # define C_bytestowords(n) (((n) + 7) >> 3) macro
818 # define C_bytestowords(n) (((n) + 3) >> 2) macro
1008 #define C_bignum_size(b) (C_bytestowords(C_header_size(C_internal_bignum_vector(b)))-1)
1244 #define C_words(n) C_fix(C_bytestowords(C_unfix(n)))
H A Dsupport.scm250 (define bytes->words (foreign-lambda int "C_bytestowords" int))
H A Deval.c1794 C_word x,s=0+2+(t0==NULL?1:C_bytestowords(C_strlen(t0))),*a=C_alloc(s); in CHICKEN_load()
1802 C_word x,s=0+2+(t0==NULL?1:C_bytestowords(C_strlen(t0)))+3,*a=C_alloc(s); in CHICKEN_read()
1838 C_word x,s=0+2+(t0==NULL?1:C_bytestowords(C_strlen(t0)))+3,*a=C_alloc(s); in CHICKEN_eval_string_to_string()
1862 C_word x,s=0+2+(t0==NULL?1:C_bytestowords(C_strlen(t0)))+3,*a=C_alloc(s); in CHICKEN_eval_string()
H A Dsupport.c56 C_r=C_fix((C_word)C_bytestowords(t0)); in stub927()