| /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/fb/ |
| ramnv40.h | 12 u32 coef; member in struct:nv40_ram
|
| /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/ |
| complexity.h | 34 // - coef : Estimated coeficient for the high-order term as 43 LeastSq() : coef(0.0), rms(0.0), complexity(oNone) {} 45 double coef; member in struct:benchmark::LeastSq
|
| /src/external/apache2/llvm/dist/llvm/utils/benchmark/src/ |
| complexity.h | 34 // - coef : Estimated coeficient for the high-order term as 43 LeastSq() : coef(0.0), rms(0.0), complexity(oNone) {} 45 double coef; member in struct:benchmark::LeastSq
|
| /src/external/gpl3/gcc/dist/gcc/ |
| tree-affine.h | 38 widest_int coef; member in class:aff_comb_elt 127 && (aff->elts[0].coef == 1 || aff->elts[0].coef == -1));
|
| tree-ssa-address.cc | 428 if (addr->elts[i].coef != 1) 457 if (addr->elts[i].coef != 1) 490 if (addr->elts[i].coef != 1) 526 parts->step = wide_int_to_tree (sizetype, addr->elts[i].coef); 623 HOST_WIDE_INT coef; local 632 if (!wi::fits_shwi_p (addr->elts[i].coef)) 635 coef = addr->elts[i].coef.to_shwi (); 636 if (coef == 1 637 || !multiplier_allowed_in_address_p (coef, TYPE_MODE (type), as) [all...] |
| tree-data-ref.cc | 264 tree coef; 267 for (i = 1; fn.iterate (i, &coef); i++) 270 print_generic_expr (outf, coef, TDF_SLIM); 2795 tree coef; 2797 for (i = 1; fn.iterate (i, &coef); i++) 2798 if (!integer_zerop (coef)) 2833 tree coef; 2854 for (; fna.iterate (i, &coef); i++) 2855 ret.quick_push (fold_build2 (op, signed_type_for (TREE_TYPE (coef)), 2856 coef, integer_zero_node)) 263 tree coef; local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| tree-affine.h | 38 widest_int coef; member in class:aff_comb_elt 127 && (aff->elts[0].coef == 1 || aff->elts[0].coef == -1));
|
| tree-ssa-address.cc | 431 if (addr->elts[i].coef != 1) 460 if (addr->elts[i].coef != 1) 493 if (addr->elts[i].coef != 1) 529 parts->step = wide_int_to_tree (sizetype, addr->elts[i].coef); 626 HOST_WIDE_INT coef; local 635 if (!wi::fits_shwi_p (addr->elts[i].coef)) 638 coef = addr->elts[i].coef.to_shwi (); 639 if (coef == 1 640 || !multiplier_allowed_in_address_p (coef, TYPE_MODE (type), as) [all...] |
| tree-data-ref.cc | 263 tree coef; 266 for (i = 1; fn.iterate (i, &coef); i++) 269 print_generic_expr (outf, coef, TDF_SLIM); 2782 tree coef; 2784 for (i = 1; fn.iterate (i, &coef); i++) 2785 if (!integer_zerop (coef)) 2820 tree coef; 2841 for (; fna.iterate (i, &coef); i++) 2842 ret.quick_push (fold_build2 (op, signed_type_for (TREE_TYPE (coef)), 2843 coef, integer_zero_node)) 262 tree coef; local [all...] |
| /src/external/gpl3/gdb/dist/sim/testsuite/bfin/ |
| fir.s | 124 loadsym I1, coef; 135 loadsym I1, coef; 190 coef: label
|
| /src/external/gpl3/gdb.old/dist/sim/testsuite/bfin/ |
| fir.s | 124 loadsym I1, coef; 135 loadsym I1, coef; 190 coef: label
|
| /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/clk/ |
| nouveau_nvkm_subdev_clk_nv40.c | 65 u32 coef = nvkm_rd32(device, reg + 0x04); local 66 int N2 = (coef & 0xff000000) >> 24; 67 int M2 = (coef & 0x00ff0000) >> 16; 68 int N1 = (coef & 0x0000ff00) >> 8; 69 int M1 = (coef & 0x000000ff) >> 0;
|
| nouveau_nvkm_subdev_clk_gf100.c | 43 u32 coef; member in struct:gf100_clk_info 68 u32 coef = nvkm_rd32(device, pll + 0x04); local 69 u32 P = (coef & 0x003f0000) >> 16; 70 u32 N = (coef & 0x0000ff00) >> 8; 71 u32 M = (coef & 0x000000ff) >> 0; 255 calc_pll(struct gf100_clk *clk, int idx, u32 freq, u32 *coef) 274 *coef = (P << 16) | (N << 8) | M; 297 clk1 = calc_pll(clk, idx, freq, &info->coef); 315 info->ssel = info->coef = 0; 379 if (info->coef) { [all...] |
| nouveau_nvkm_subdev_clk_gk104.c | 43 u32 coef; member in struct:gk104_clk_info 69 u32 coef = nvkm_rd32(device, pll + 0x04); local 70 u32 P = (coef & 0x003f0000) >> 16; 71 u32 N = (coef & 0x0000ff00) >> 8; 72 u32 M = (coef & 0x000000ff) >> 0; 87 P = (coef & 0x10000000) ? 2 : 1; 268 calc_pll(struct gk104_clk *clk, int idx, u32 freq, u32 *coef) 287 *coef = (P << 16) | (N << 8) | M; 311 clk1 = calc_pll(clk, idx, freq, &info->coef); 398 if (info->coef) { [all...] |
| nouveau_nvkm_subdev_clk_gt215.c | 122 u32 coef = nvkm_rd32(device, pll + 4); local 123 M = (coef & 0x000000ff) >> 0; 124 N = (coef & 0x0000ff00) >> 8; 125 P = (coef & 0x003f0000) >> 16; 375 const u32 coef = pll + 4; local 388 nvkm_wr32(device, coef, info->pll);
|
| nouveau_nvkm_subdev_clk_mcp77.c | 58 u32 coef = nvkm_rd32(device, base + 4); local 75 N1 = (coef & 0x0000ff00) >> 8; 76 M1 = (coef & 0x000000ff);
|
| nouveau_nvkm_subdev_clk_nv50.c | 61 u32 coef, ref = nvkm_clk_read(&clk->base, nv_clk_src_crystal); local 78 coef = nvkm_rd32(device, 0x00e81c + (id * 0x0c)); 79 ref *= (coef & 0x01000000) ? 2 : 4; 80 P = (coef & 0x00070000) >> 16; 81 N = ((coef & 0x0000ff00) >> 8) + 1; 82 M = ((coef & 0x000000ff) >> 0) + 1; 87 coef = nvkm_rd32(device, 0x00e81c); 88 P = (coef & 0x00070000) >> 16; 89 N = (coef & 0x0000ff00) >> 8; 90 M = (coef & 0x000000ff) >> 0 168 u32 coef = nvkm_rd32(device, base + 4); local [all...] |
| /src/sys/external/bsd/drm2/dist/include/uapi/drm/ |
| v3d_drm.h | 226 __u32 coef[4]; member in struct:drm_v3d_submit_tfu 246 __u32 coef[4]; member in struct:drm_v3d_submit_csd
|
| /src/sys/dev/pci/ |
| if_wpireg.h | 630 int32_t coef[5]; member in struct:wpi_eeprom_group
|
| /src/external/mit/isl/dist/ |
| isl_scheduler.c | 1638 isl_basic_set *coef; local 1662 coef = isl_set_coefficients(delta); 1663 *hmap = isl_map_to_basic_set_set(*hmap, key, isl_basic_set_copy(coef)); 1665 return coef; 1685 isl_basic_set *coef; local 1697 coef = isl_set_coefficients(set); 1699 isl_basic_set_copy(coef)); 1701 return coef; 1705 * the coefficients constraints "coef". 1707 * The space of "coef" is of the for 1910 isl_basic_set *coef; local 1947 isl_basic_set *coef; local 2025 isl_basic_set *coef; local 2104 isl_basic_set *coef; local 2389 isl_basic_set *coef; local [all...] |