Home | History | Annotate | Download | only in translate

Lines Matching defs:in

8  * "Software"), to deal in the Software without restriction, including
15 * next paragraph) shall be included in all copies or substantial portions
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
69 * in this case, u_format is used to do a full conversion
71 * this value is set to the format size in bytes if output_format == input_format or for 32-bit instance ids:
72 * in this case, memcpy is used to copy this amount of bytes
99 SRCTYPE *in = (SRCTYPE *)attrib; \
103 out[i] = TO(in[i]); \
241 float *in = (float *)attrib;
243 out[0] = TO_8_UNORM(in[3]);
244 out[1] = TO_8_UNORM(in[0]);
245 out[2] = TO_8_UNORM(in[1]);
246 out[3] = TO_8_UNORM(in[2]);
252 float *in = (float *)attrib;
254 out[2] = TO_8_UNORM(in[0]);
255 out[1] = TO_8_UNORM(in[1]);
256 out[0] = TO_8_UNORM(in[2]);
257 out[3] = TO_8_UNORM(in[3]);
780 /* Integers must not lose precision at any point in the pipeline. */