Lines Matching refs:pSelection
319 DRCDEC_SELECTION* pSelection);
322 DRCDEC_SELECTION* pSelection, DRCDEC_SELECTION_DATA* pDataIn);
324 static int _drcdec_selection_clear(DRCDEC_SELECTION* pSelection);
326 static int _drcdec_selection_getNumber(DRCDEC_SELECTION* pSelection);
328 static int _drcdec_selection_setNumber(DRCDEC_SELECTION* pSelection, int num);
331 DRCDEC_SELECTION* pSelection, int at);
2428 DRCDEC_SELECTION* pSelection) { in _drcdec_selection_addNew() argument
2429 if (pSelection->numData < (12 + 1 + 6)) { in _drcdec_selection_addNew()
2430 DRCDEC_SELECTION_DATA* pData = &(pSelection->data[pSelection->numData]); in _drcdec_selection_addNew()
2432 pSelection->numData++; in _drcdec_selection_addNew()
2441 DRCDEC_SELECTION* pSelection, DRCDEC_SELECTION_DATA* pDataIn) { in _drcdec_selection_add() argument
2442 if (pSelection->numData < (12 + 1 + 6)) { in _drcdec_selection_add()
2443 DRCDEC_SELECTION_DATA* pData = &(pSelection->data[pSelection->numData]); in _drcdec_selection_add()
2445 pSelection->numData++; in _drcdec_selection_add()
2452 static int _drcdec_selection_clear(DRCDEC_SELECTION* pSelection) { in _drcdec_selection_clear() argument
2453 return pSelection->numData = 0; in _drcdec_selection_clear()
2456 static int _drcdec_selection_getNumber(DRCDEC_SELECTION* pSelection) { in _drcdec_selection_getNumber() argument
2457 return pSelection->numData; in _drcdec_selection_getNumber()
2460 static int _drcdec_selection_setNumber(DRCDEC_SELECTION* pSelection, int num) { in _drcdec_selection_setNumber() argument
2461 if (num >= 0 && num < pSelection->numData) { in _drcdec_selection_setNumber()
2462 return pSelection->numData = num; in _drcdec_selection_setNumber()
2464 return pSelection->numData; in _drcdec_selection_setNumber()
2469 DRCDEC_SELECTION* pSelection, int at) { in _drcdec_selection_getAt() argument
2471 return &(pSelection->data[at]); in _drcdec_selection_getAt()