HomeSort by relevance Sort by last modified time
    Searched defs:pfmt (Results 1 - 6 of 6) sorted by null

  /external/mesa3d/src/gallium/drivers/freedreno/a5xx/
fd5_draw.c 211 enum pipe_format pfmt = pfb->cbufs[i]->format; local
215 switch (fd5_pipe2swap(pfmt)) {
242 if (util_format_is_pure_uint(pfmt)) {
243 util_format_write_4ui(pfmt, swapped.ui, 0, &uc, 0, 0, 0, 1, 1);
244 } else if (util_format_is_pure_sint(pfmt)) {
245 util_format_write_4i(pfmt, swapped.i, 0, &uc, 0, 0, 0, 1, 1);
247 util_pack_color(swapped.f, pfmt, &uc);
fd5_emit.c 367 enum pipe_format pfmt = elem->src_format; local
368 enum a5xx_vtx_fmt fmt = fd5_pipe2vtx(pfmt);
369 bool isint = util_format_is_pure_integer(pfmt);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
PluralFormatUnitTest.java 307 MessageFormat pfmt = new MessageFormat("The disk ''{0}'' contains {1, plural, one {one ''''{1, number, #.0}'''' widget} other {# widgets}}."); local
311 logln(pfmt.format(args));
315 PluralFormat pf = (PluralFormat)pfmt.getFormatsByArgumentIndex()[1];
318 logln(pfmt.toPattern());
319 MessageFormat pfmt2 = new MessageFormat(pfmt.toPattern());
320 assertEquals("message formats are equal", pfmt, pfmt2);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
PluralFormatUnitTest.java 304 MessageFormat pfmt = new MessageFormat("The disk ''{0}'' contains {1, plural, one {one ''''{1, number, #.0}'''' widget} other {# widgets}}."); local
308 logln(pfmt.format(args));
312 PluralFormat pf = (PluralFormat)pfmt.getFormatsByArgumentIndex()[1];
315 logln(pfmt.toPattern());
316 MessageFormat pfmt2 = new MessageFormat(pfmt.toPattern());
317 assertEquals("message formats are equal", pfmt, pfmt2);
  /external/mesa3d/src/gallium/drivers/freedreno/a3xx/
fd3_emit.c 405 enum pipe_format pfmt = elem->src_format; local
406 enum a3xx_vtx_fmt fmt = fd3_pipe2vtx(pfmt);
411 bool isint = util_format_is_pure_integer(pfmt);
412 uint32_t fs = util_format_get_blocksize(pfmt);
429 A3XX_VFD_DECODE_INSTR_SWAP(fd3_pipe2swap(pfmt)) |
    [all...]
  /external/mesa3d/src/gallium/drivers/freedreno/a4xx/
fd4_emit.c 412 enum pipe_format pfmt = elem->src_format; local
413 enum a4xx_vtx_fmt fmt = fd4_pipe2vtx(pfmt);
418 bool isint = util_format_is_pure_integer(pfmt);
419 uint32_t fs = util_format_get_blocksize(pfmt);
437 A4XX_VFD_DECODE_INSTR_SWAP(fd4_pipe2swap(pfmt)) |

Completed in 318 milliseconds