Home
last modified time | relevance | path

Searched refs:nfmt (Results 1 – 25 of 32) sorted by relevance

12

/external/llvm-project/llvm/test/MC/AMDGPU/
Dmtbuf.s13 tbuffer_load_format_x v1, off, s[4:7], dfmt:15, nfmt:2, s1
17 tbuffer_load_format_xy v[1:2], off, s[4:7], dfmt:15, nfmt:2, s1
21 tbuffer_load_format_xyz v[1:3], off, s[4:7], dfmt:15, nfmt:2, s1
25 tbuffer_load_format_xyzw v[1:4], off, s[4:7], dfmt:15, nfmt:2, s1
29 tbuffer_store_format_x v1, off, s[4:7], dfmt:15, nfmt:2, s1
33 tbuffer_store_format_xy v[1:2], off, s[4:7], dfmt:15, nfmt:2, s1
37 tbuffer_store_format_xyzw v[1:4], off, s[4:7], dfmt:15, nfmt:2, s1
41 tbuffer_store_format_xyzw v[1:4], off, ttmp[4:7], dfmt:15, nfmt:2, ttmp1
51 tbuffer_store_format_xyzw v[1:4], off, ttmp[4:7], nfmt:2, ttmp1
56 tbuffer_store_format_xyzw v[1:4], off, ttmp[4:7], nfmt:2, dfmt:15, ttmp1
[all …]
Dbuf-fmt-d16-packed.s46 tbuffer_load_format_d16_x v1, off, s[4:7], dfmt:15, nfmt:2, s1
49 tbuffer_load_format_d16_xy v1, off, s[4:7], dfmt:15, nfmt:2, s1
53 tbuffer_load_format_d16_xyz v[1:2], off, s[4:7], dfmt:15, nfmt:2, s1
57 tbuffer_load_format_d16_xyzw v[1:2], off, s[4:7], dfmt:15, nfmt:2, s1
61 tbuffer_store_format_d16_x v1, off, s[4:7], dfmt:15, nfmt:2, s1
64 tbuffer_store_format_d16_xy v1, off, s[4:7], dfmt:15, nfmt:2, s1
68 tbuffer_store_format_d16_xyz v[1:2], off, s[4:7], dfmt:15, nfmt:2, s1
72 tbuffer_store_format_d16_xyzw v[1:2], off, s[4:7], dfmt:15, nfmt:2, s1
Dbuf-fmt-d16-unpacked.s45 tbuffer_load_format_d16_x v1, off, s[4:7], dfmt:15, nfmt:2, s1
48 tbuffer_load_format_d16_xy v[1:2], off, s[4:7], dfmt:15, nfmt:2, s1
52 tbuffer_load_format_d16_xyz v[1:3], off, s[4:7], dfmt:15, nfmt:2, s1
56 tbuffer_load_format_d16_xyzw v[1:4], off, s[4:7], dfmt:15, nfmt:2, s1
60 tbuffer_store_format_d16_x v1, off, s[4:7], dfmt:15, nfmt:2, s1
63 tbuffer_store_format_d16_xy v[1:2], off, s[4:7], dfmt:15, nfmt:2, s1
67 tbuffer_store_format_d16_xyz v[1:3], off, s[4:7], dfmt:15, nfmt:2, s1
71 tbuffer_store_format_d16_xyzw v[1:4], off, s[4:7], dfmt:15, nfmt:2, s1
Dgfx9_err_pos.s187 tbuffer_store_format_xyzw v[1:4], off, ttmp[4:7] dfmt:16 nfmt:1 s0
195 tbuffer_store_format_xyzw v[1:4], off, ttmp[4:7] dfmt:1 nfmt:-1 s0
/external/icu/icu4c/source/samples/cal/
Dcal.c431 UNumberFormat *nfmt; in print_month() local
487 nfmt = unum_open(UNUM_DECIMAL, NULL,0,NULL,NULL, status); in print_month()
503 unum_format(nfmt, day, s, BUF_SIZE, 0, status); in print_month()
533 unum_close(nfmt); in print_month()
548 UNumberFormat *nfmt; in print_year() local
599 nfmt = unum_open(UNUM_DECIMAL,NULL, 0,NULL,NULL, status); in print_year()
674 unum_format(nfmt, left_day, s, BUF_SIZE, 0, status); in print_year()
722 unum_format(nfmt, right_day, s, BUF_SIZE, 0, status); in print_year()
762 unum_close(nfmt); in print_year()
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
DSimpleDateFormatICU.java228 com.ibm.icu.text.NumberFormat nfmt = fIcuSdf.getNumberFormat(); in getNumberFormat() local
229 if (nfmt instanceof NumberFormatJDK) { in getNumberFormat()
230 return ((NumberFormatJDK)nfmt).unwrap(); in getNumberFormat()
232 if (nfmt instanceof com.ibm.icu.text.DecimalFormat) { in getNumberFormat()
233 return DecimalFormatICU.wrap((com.ibm.icu.text.DecimalFormat)nfmt); in getNumberFormat()
235 return NumberFormatICU.wrap(nfmt); in getNumberFormat()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DNumberFormatRegressionTest.java286 NumberFormat nfmt = NumberFormat.getInstance(); in TestT5698() local
290 Number n = nfmt.parse(data[i]); in TestT5698()
315 NumberFormat nfmt = NumberFormat.getInstance(); in TestSurrogatesParsing() local
319 Number n = nfmt.parse(data[i]); in TestSurrogatesParsing()
DNumberFormatTest.java1973 NumberFormat nfmt = NumberFormat.getCurrencyInstance(new Locale("und", "PH")); in Test6816() local
1974 DecimalFormatSymbols decsym = ((DecimalFormat)nfmt).getDecimalFormatSymbols(); in Test6816()
4429 NumberFormat nfmt = NumberFormat.getInstance();
4430 DisplayContext context = nfmt.getContext(DisplayContext.Type.CAPITALIZATION);
4434 nfmt.setContext(DisplayContext.CAPITALIZATION_FOR_STANDALONE);
4435 context = nfmt.getContext(DisplayContext.Type.CAPITALIZATION);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DNumberFormatRegressionTest.java283 NumberFormat nfmt = NumberFormat.getInstance(); in TestT5698() local
287 Number n = nfmt.parse(data[i]); in TestT5698()
312 NumberFormat nfmt = NumberFormat.getInstance(); in TestSurrogatesParsing() local
316 Number n = nfmt.parse(data[i]); in TestSurrogatesParsing()
DNumberFormatTest.java1970 NumberFormat nfmt = NumberFormat.getCurrencyInstance(new Locale("und", "PH")); in Test6816() local
1971 DecimalFormatSymbols decsym = ((DecimalFormat)nfmt).getDecimalFormatSymbols(); in Test6816()
4426 NumberFormat nfmt = NumberFormat.getInstance();
4427 DisplayContext context = nfmt.getContext(DisplayContext.Type.CAPITALIZATION);
4431 nfmt.setContext(DisplayContext.CAPITALIZATION_FOR_STANDALONE);
4432 context = nfmt.getContext(DisplayContext.Type.CAPITALIZATION);
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUSearchableTables.td33 class GcnBufferFormatBase<bits<8> f, bits<8> bpc, bits<8> numc, bits<8> nfmt, bits<8> dfmt> {
37 bits<8> NumFormat = nfmt;
41 …bits<8> f, bits<8> bpc, bits<8> numc, bits<8> nfmt, bits<8> dfmt> : GcnBufferFormatBase<f, bpc, nu…
42 …bits<8> f, bits<8> bpc, bits<8> numc, bits<8> nfmt, bits<8> dfmt> : GcnBufferFormatBase<f, bpc, nu…
/external/llvm-project/llvm/lib/Target/AMDGPU/
DAMDGPUSearchableTables.td33 class GcnBufferFormatBase<bits<8> f, bits<8> bpc, bits<8> numc, bits<8> nfmt, bits<8> dfmt> {
37 bits<8> NumFormat = nfmt;
41 …bits<8> f, bits<8> bpc, bits<8> numc, bits<8> nfmt, bits<8> dfmt> : GcnBufferFormatBase<f, bpc, nu…
42 …bits<8> f, bits<8> bpc, bits<8> numc, bits<8> nfmt, bits<8> dfmt> : GcnBufferFormatBase<f, bpc, nu…
DBUFInstructions.td136 bits<3> nfmt = format{6-4};
2173 let Inst{25-23} = nfmt;
2402 let Inst{25-23} = nfmt;
2432 let Inst{25-23} = nfmt;
/external/mesa3d/src/amd/common/
Dac_shader_util.c108 unsigned ac_get_tbuffer_format(enum chip_class chip_class, unsigned dfmt, unsigned nfmt) in ac_get_tbuffer_format() argument
163 switch (nfmt) { in ac_get_tbuffer_format()
190 return dfmt | (nfmt << 4); in ac_get_tbuffer_format()
Dac_shader_util.h87 unsigned ac_get_tbuffer_format(enum chip_class chip_class, unsigned dfmt, unsigned nfmt);
/external/mesa3d/src/amd/llvm/
Dac_llvm_build.h276 unsigned num_channels, unsigned dfmt, unsigned nfmt,
282 unsigned nfmt, unsigned cache_policy, bool can_speculate);
302 unsigned num_channels, unsigned dfmt, unsigned nfmt,
307 unsigned num_channels, unsigned dfmt, unsigned nfmt,
Dac_llvm_build.c1146 unsigned nfmt = V_008F0C_BUF_NUM_FORMAT_UINT; in ac_build_buffer_store_dword() local
1150 nfmt, cache_policy); in ac_build_buffer_store_dword()
1244 unsigned num_channels, unsigned dfmt, unsigned nfmt, in ac_build_tbuffer_load() argument
1257 args[idx++] = LLVMConstInt(ctx->i32, ac_get_tbuffer_format(ctx->chip_class, dfmt, nfmt), 0); in ac_build_tbuffer_load()
1275 unsigned num_channels, unsigned dfmt, unsigned nfmt, in ac_build_struct_tbuffer_load() argument
1279 nfmt, cache_policy, can_speculate, true); in ac_build_struct_tbuffer_load()
1285 unsigned nfmt, unsigned cache_policy, bool can_speculate) in ac_build_raw_tbuffer_load() argument
1288 nfmt, cache_policy, can_speculate, false); in ac_build_raw_tbuffer_load()
1305 unsigned nfmt = V_008F0C_BUF_NUM_FORMAT_UINT; in ac_build_tbuffer_load_short() local
1307 res = ac_build_raw_tbuffer_load(ctx, rsrc, voffset, soffset, immoffset, 1, dfmt, nfmt, in ac_build_tbuffer_load_short()
[all …]
/external/llvm/lib/Target/AMDGPU/
DVIInstrFormats.td68 bits<3> nfmt;
82 let Inst{25-23} = nfmt;
DSIIntrinsics.td31 llvm_i32_ty, // nfmt(imm)
DSIInstrFormats.td543 bits<3> nfmt;
557 let Inst{25-23} = nfmt;
/external/mesa3d/src/amd/compiler/
Daco_instruction_selection_setup.cpp599 unsigned nfmt = (attrib_format >> 4) & 0x7; in init_context() local
602 if (nfmt == V_008F0C_BUF_NUM_FORMAT_UNORM) { in init_context()
604 } else if (nfmt == V_008F0C_BUF_NUM_FORMAT_UINT || in init_context()
605 nfmt == V_008F0C_BUF_NUM_FORMAT_USCALED) { in init_context()
606 bool uscaled = nfmt == V_008F0C_BUF_NUM_FORMAT_USCALED; in init_context()
Daco_opt_value_numbering.cpp260 aM->nfmt == bM->nfmt && in operator ()()
Daco_print_ir.cpp541 switch (mtbuf->nfmt) { in print_instr_format_specific()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DIntrinsicsAMDGPU.td1032 llvm_i32_ty, // nfmt(imm)
1048 llvm_i32_ty, // nfmt(imm)
1064 llvm_i32_ty, // format(imm; bits 3..0 = dfmt, bits 6..4 = nfmt)
1078 llvm_i32_ty, // format(imm; bits 3..0 = dfmt, bits 6..4 = nfmt)
1092 llvm_i32_ty, // format(imm; bits 3..0 = dfmt, bits 6..4 = nfmt)
1107 llvm_i32_ty, // format(imm; bits 3..0 = dfmt, bits 6..4 = nfmt)
/external/llvm-project/llvm/include/llvm/IR/
DIntrinsicsAMDGPU.td1077 llvm_i32_ty, // nfmt(imm)
1094 llvm_i32_ty, // nfmt(imm)
1111 llvm_i32_ty, // format(imm; bits 3..0 = dfmt, bits 6..4 = nfmt)
1126 llvm_i32_ty, // format(imm; bits 3..0 = dfmt, bits 6..4 = nfmt)
1141 llvm_i32_ty, // format(imm; bits 3..0 = dfmt, bits 6..4 = nfmt)
1157 llvm_i32_ty, // format(imm; bits 3..0 = dfmt, bits 6..4 = nfmt)

12