Searched refs:pAL (Results 1 – 3 of 3) sorted by relevance
182 tArgList * pAL = *(void **)ppAL; in addArgListEntry() local188 if (pAL == NULL) { in addArgListEntry()189 pAL = (tArgList *)AGALOC(sizeof(*pAL), "new option arg stack"); in addArgListEntry()190 if (pAL == NULL) in addArgListEntry()192 pAL->useCt = 0; in addArgListEntry()193 pAL->allocCt = MIN_ARG_ALLOC_CT; in addArgListEntry()194 *ppAL = VOIDP(pAL); in addArgListEntry()201 else if (pAL->useCt >= pAL->allocCt) { in addArgListEntry()202 size_t sz = sizeof(*pAL); in addArgListEntry()203 pAL->allocCt += INCR_ARG_ALLOC_CT; in addArgListEntry()[all …]
310 tArgList * pAL = (tArgList *)pOD->optCookie; in print_stacked_arg() local311 char const ** ppz = pAL->apzArgs; in print_stacked_arg()312 int ct = pAL->useCt; in print_stacked_arg()318 pAL->useCt - ct); in print_stacked_arg()321 pAL->useCt - ct); in print_stacked_arg()
694 tArgList * pAL = (tArgList *)od->optCookie; in prt_str_arg() local695 int uct = pAL->useCt; in prt_str_arg()696 char const ** ppz = pAL->apzArgs; in prt_str_arg()