Home
last modified time | relevance | path

Searched refs:BclContext (Results 1 – 3 of 3) sorted by relevance

/external/bc/include/
Dbcl.h208 typedef struct BclCtxt* BclContext; typedef
221 BclError bcl_pushContext(BclContext ctxt);
223 BclContext bcl_context(void);
225 BclContext bcl_ctxt_create(void);
226 void bcl_ctxt_free(BclContext ctxt);
227 void bcl_ctxt_freeNums(BclContext ctxt);
229 size_t bcl_ctxt_scale(BclContext ctxt);
230 void bcl_ctxt_setScale(BclContext ctxt, size_t scale);
231 size_t bcl_ctxt_ibase(BclContext ctxt);
232 void bcl_ctxt_setIbase(BclContext ctxt, size_t ibase);
[all …]
/external/bc/src/
Dlibrary.c88 bc_vec_init(&vm.ctxts, sizeof(BclContext), NULL); in bcl_init()
108 BclError bcl_pushContext(BclContext ctxt) { in bcl_pushContext()
125 BclContext bcl_context(void) { in bcl_context()
127 return *((BclContext*) bc_vec_top(&vm.ctxts)); in bcl_context()
146 BclContext ctxt = *((BclContext*) bc_vec_item(&vm.ctxts, i)); in bcl_free()
176 BclContext bcl_ctxt_create(void) { in bcl_ctxt_create()
178 BclContext ctxt = NULL; in bcl_ctxt_create()
205 void bcl_ctxt_free(BclContext ctxt) { in bcl_ctxt_free()
213 void bcl_ctxt_freeNums(BclContext ctxt) { in bcl_ctxt_freeNums()
218 size_t bcl_ctxt_scale(BclContext ctxt) { in bcl_ctxt_scale()
[all …]
/external/bc/tests/
Dbcl.c49 BclContext ctxt; in main()