Searched refs:coeff (Results 1 - 6 of 6) sorted by relevance

/vbox/src/VBox/GuestHost/OpenGL/include/state/
H A Dcr_evaluators.h40 GLfloat *coeff; member in struct:__anon16184
49 GLfloat *coeff; member in struct:__anon16185
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/ath9k/
H A Dath9k_ar9003_calib.c30 struct coeff { struct
574 "tx chain %d: iq corr coeff=%x\n",
607 "rx chain %d: iq corr coeff=%x\n",
652 struct coeff *coeff)
684 ar9003_hw_detect_outlier(coeff->mag_coeff[i],
688 ar9003_hw_detect_outlier(coeff->phs_coeff[i],
694 coeff->iqc_coeff[0] = (coeff->mag_coeff[i][im] & 0x7f) |
695 ((coeff
650 ar9003_hw_tx_iqcal_load_avg_2_passes(struct ath_hw *ah, u8 num_chains, struct coeff *coeff) argument
752 struct coeff coeff; local
[all...]
/vbox/src/VBox/GuestHost/OpenGL/state_tracker/
H A Dstate_evaluators.c25 crFree( e->eval1D[k].coeff );
35 crFree( e->eval2D[k].coeff );
53 e->eval1D[k].coeff = (GLfloat *) crAlloc(n * sizeof(GLfloat));
55 e->eval1D[k].coeff[i] = initial[i];
79 e->eval2D[k].coeff = (GLfloat *) crAlloc(n * sizeof(GLfloat));
81 e->eval2D[k].coeff[i] = initial[i];
409 if (e->eval1D[i].coeff)
410 crFree(e->eval1D[i].coeff);
411 e->eval1D[i].coeff = pnts;
543 if (e->eval2D[i].coeff)
[all...]
H A Dstate_snapshot.c743 if (pEval[i].coeff)
745 rc = SSMR3PutMem(pSSM, pEval[i].coeff, pEval[i].order * gleval_sizes[i] * sizeof(GLfloat));
759 if (pEval[i].coeff)
761 rc = SSMR3PutMem(pSSM, pEval[i].coeff, pEval[i].uorder * pEval[i].vorder * gleval_sizes[i] * sizeof(GLfloat));
776 if (pEval[i].coeff)
781 pEval[i].coeff = (GLfloat*) crAlloc(size);
782 if (!pEval[i].coeff) return VERR_NO_MEMORY;
784 rc = SSMR3GetMem(pSSM, pEval[i].coeff, size);
799 if (pEval[i].coeff)
804 pEval[i].coeff
[all...]
H A Dstate_attrib.c275 a->evalStack[a->evalStackDepth].eval1D[i].coeff = (GLfloat*)crCalloc(size1);
276 crMemcpy(a->evalStack[a->evalStackDepth].eval1D[i].coeff, g->eval.eval1D[i].coeff, size1);
283 a->evalStack[a->evalStackDepth].eval2D[i].coeff = (GLfloat*)crCalloc(size2);
284 crMemcpy(a->evalStack[a->evalStackDepth].eval2D[i].coeff, g->eval.eval2D[i].coeff, size2);
753 crMemcpy((char*)g->eval.eval1D[i].coeff, a->evalStack[a->evalStackDepth].eval1D[i].coeff, size1);
754 crFree(a->evalStack[a->evalStackDepth].eval1D[i].coeff);
755 a->evalStack[a->evalStackDepth].eval1D[i].coeff
[all...]
H A Dstate_lists.c864 if (g->eval.eval1D[i].coeff)
866 crFree(g->eval.eval1D[i].coeff);
868 g->eval.eval1D[i].coeff = coeffs;
905 if (g->eval.eval2D[i].coeff)
907 crFree(g->eval.eval2D[i].coeff);
909 g->eval.eval2D[i].coeff = coeffs;

Completed in 808 milliseconds