HomeSort by: relevance | last modified time | path
    Searched refs:bc_num (Results 1 - 6 of 6) sorted by relevancy

  /src/external/bsd/bc/dist/
number.h 37 typedef struct bc_struct *bc_num; typedef in typeref:struct:bc_struct
45 bc_num n_next; /* Linked list for available list. */
85 extern bc_num _zero_;
86 extern bc_num _one_;
87 extern bc_num _two_;
94 bc_num bc_new_num (int length, int scale);
96 void bc_free_num (bc_num *num);
98 bc_num bc_copy_num (bc_num num);
100 void bc_init_num (bc_num *num)
    [all...]
number.c 55 bc_num _zero_;
56 bc_num _one_;
57 bc_num _two_;
59 static bc_num _bc_Free_list = NULL;
63 bc_num
66 bc_num temp;
72 temp = (bc_num) malloc (sizeof(bc_struct));
86 /* "Frees" a bc_num NUM. Actually decreases reference count and only
90 bc_free_num (bc_num *num)
119 bc_num
    [all...]
bcdefs.h 128 bc_num v_value;
140 bc_num n_num [NODE_SIZE];
163 bc_num s_num;
proto.h 119 void push_copy (bc_num num);
120 void push_num (bc_num num);
123 bc_num *get_array_num (int var_index, unsigned long _index_);
storage.c 293 push_copy (bc_num num)
307 push_num (bc_num num)
363 /* get_array_num returns the address of the bc_num in the array
369 bc_num *
594 bc_num *num_ptr;
672 bc_num *num_ptr;
752 bc_num *num_ptr;
834 bc_num *num_ptr;
execute.c 74 bc_num temp_num;
354 bc_num temp = ex_stack->s_num;
619 bc_num build, temp, result, mult, divisor;
709 bc_num build;

Completed in 17 milliseconds