Lines Matching refs:temp
47 bc_num temp; local
53 temp = (bc_num) safe_pemalloc (1, sizeof(bc_struct)+length, scale, persistent);
56 temp = _bc_Free_list;
57 _bc_Free_list = temp->n_next;
59 temp = (bc_num) pemalloc (sizeof(bc_struct), persistent);
62 temp->n_sign = PLUS;
63 temp->n_len = length;
64 temp->n_scale = scale;
65 temp->n_refs = 1;
67 temp->n_ptr = (char *) safe_pemalloc (1, length, scale, persistent);
68 temp->n_value = temp->n_ptr;
69 memset (temp->n_ptr, 0, length+scale);
70 return temp;