Lines Matching refs:var
288 * @param[in,out] var Indicates the variable to increment.
293 typedef FILLP_INT (*FillpSysArchAtomicIncFunc)(IO SysArchAtomic *var, FILLP_INT val);
301 * @param[in,out] var Indicates the variable to increment.
305 typedef FILLP_BOOL (*FillpSysArchAtomicIncAndTestFunc)(IO SysArchAtomic *var);
312 * @param[in,out] var Indicates the variable to decrement.
317 typedef FILLP_INT (*FillpSysArchAtomicDecFunc)(IO SysArchAtomic *var, FILLP_INT val);
325 * @param[in,out] var Indicates the variable to increment.
329 typedef FILLP_BOOL (*FillpSysArchAtomicDecAndTestFunc)(IO SysArchAtomic *var);
336 * @param[out] var Variable to read.
340 typedef FILLP_INT (*FillpSysArchAtomicReadFunc)(IO SysArchAtomic *var);
347 * @param[in] var A pointer to the value to be exchanged.
348 * @param[in] newValue The value to be exchanged with the value pointed to by var.
350 * It return the initial value of var parameter.
352 typedef FILLP_INT (*FillpSysArchAtomicSetFunc)(IN SysArchAtomic *var, IN FILLP_INT newValue);