/external/u-boot/drivers/serial/ |
D | Kconfig | 11 Select a default baudrate, where "default" has a driver-specific 12 meaning of either setting the baudrate for the early debug UART 19 # non-dm serial code 25 boards which have no debug serial port whatsoever. 34 in U-Boot. 41 In very space-constrained devices even the full UART driver is too 42 large. In this case the debug UART can still be used in some cases. 43 This option enables the full UART in U-Boot, so if is it disabled, 51 In very space-constrained devices even the full UART driver is too 52 large. In this case the debug UART can still be used in some cases. [all …]
|
/external/curl/m4/ |
D | curl-confopts.m4 | 8 # Copyright (C) 1998 - 2018, Daniel Stenberg, <daniel@haxx.se>, et al. 27 dnl ------------------------------------------------- 29 dnl --enable-threaded-resolver or --disable-threaded-resolver, and 33 AC_MSG_CHECKING([whether to enable the threaded resolver]) 36 AC_HELP_STRING([--enable-threaded-resolver],[Enable threaded resolver]) 37 AC_HELP_STRING([--disable-threaded-resolver],[Disable threaded resolver]), 41 dnl --disable-threaded-resolver option used 53 dnl ------------------------------------------------- 55 dnl --enable-ares or --disable-ares, and 61 AC_MSG_CHECKING([whether to enable c-ares for DNS lookups]) [all …]
|
/external/u-boot/arch/arm/cpu/armv7/bcm235xx/ |
D | clk-core.c | 1 // SPDX-License-Identifier: GPL-2.0+ 17 #include <asm/kona-common/clk.h> 18 #include "clk-core.h" 31 debug("%s: %s\n", __func__, clkstr); in clk_get_and_enable() 40 return -EINVAL; in clk_get_and_enable() 70 debug("%s: timeout on addr 0x%p, waiting for bit %d to go to %d\n", in wait_bit() 73 return -ETIMEDOUT; in wait_bit() 76 /* Enable a peripheral clock */ 77 static int peri_clk_enable(struct clk *c, int enable) in peri_clk_enable() argument 82 struct peri_clk_data *cd = peri_clk->data; in peri_clk_enable() [all …]
|
/external/u-boot/arch/arm/cpu/armv7/bcm281xx/ |
D | clk-core.c | 1 // SPDX-License-Identifier: GPL-2.0+ 17 #include <asm/kona-common/clk.h> 18 #include "clk-core.h" 31 debug("%s: %s\n", __func__, clkstr); in clk_get_and_enable() 40 return -EINVAL; in clk_get_and_enable() 70 debug("%s: timeout on addr 0x%p, waiting for bit %d to go to %d\n", in wait_bit() 73 return -ETIMEDOUT; in wait_bit() 76 /* Enable a peripheral clock */ 77 static int peri_clk_enable(struct clk *c, int enable) in peri_clk_enable() argument 82 struct peri_clk_data *cd = peri_clk->data; in peri_clk_enable() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/ |
D | machine-outliner-flags.ll | 2 ; RUN: llc %s -debug-pass=Structure -verify-machineinstrs \ 3 ; RUN: --debug-only=machine-outliner -enable-machine-outliner=always \ 4 ; RUN: -mtriple arm64---- -o /dev/null 2>&1 \ 5 ; RUN: | FileCheck %s -check-prefix=ALWAYS 7 ; RUN: llc %s -debug-pass=Structure -verify-machineinstrs \ 8 ; RUN: --debug-only=machine-outliner -enable-machine-outliner \ 9 ; RUN: -mtriple arm64---- -o /dev/null 2>&1 \ 10 ; RUN: | FileCheck %s -check-prefix=ENABLE 12 ; RUN: llc %s -debug-pass=Structure -verify-machineinstrs \ 13 ; RUN: -enable-machine-outliner=never -mtriple arm64---- -o /dev/null 2>&1 \ [all …]
|
/external/swiftshader/.vscode/ |
D | launch.json | 9 "program": "${workspaceRoot}/debug/OGLESIntroducingPVRApi", 12 "cwd": "${workspaceRoot}/debug/", 19 "description": "Enable pretty-printing for gdb", 20 "text": "-enable-pretty-printing", 32 "description": "Enable pretty-printing for gdb", 33 "text": "-enable-pretty-printing", 44 "program": "${workspaceRoot}/debug/OGLESGlass", 47 "cwd": "${workspaceRoot}/debug/", 54 "description": "Enable pretty-printing for gdb", 55 "text": "-enable-pretty-printing", [all …]
|
/external/u-boot/drivers/mmc/ |
D | tegra_mmc.c | 1 // SPDX-License-Identifier: GPL-2.0+ 6 * Portions Copyright 2011-2016 NVIDIA Corporation 16 #include <asm/arch-tegra/tegra_mmc.h> 38 debug("%s: power = %x\n", __func__, power); in tegra_mmc_set_power() 40 if (power != (unsigned short)-1) { in tegra_mmc_set_power() 55 debug("%s: pwr = %X\n", __func__, pwr); in tegra_mmc_set_power() 58 writeb(pwr, &priv->reg->pwrcon); in tegra_mmc_set_power() 62 /* Now enable bus power */ in tegra_mmc_set_power() 64 writeb(pwr, &priv->reg->pwrcon); in tegra_mmc_set_power() 74 debug("buf: %p (%p), data->blocks: %u, data->blocksize: %u\n", in tegra_mmc_prepare_data() [all …]
|
/external/jemalloc_new/ |
D | .travis.yml | 6 - os: linux 7 … env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-bounds" 8 - os: osx 9 … env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-bounds" 10 - os: linux 11 … CC=clang CXX=clang++ COMPILER_FLAGS="" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-bounds" 12 - os: linux 13 …env: CC=gcc CXX=g++ COMPILER_FLAGS="-m32" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-boun… 17 - gcc-multilib 18 - os: linux [all …]
|
/external/swiftshader/third_party/LLVM/utils/ |
D | llvmbuild | 2 ##===- utils/llvmbuild - Build the LLVM project ----------------*-python-*-===## 9 ##===----------------------------------------------------------------------===## 12 # will build LLVM, Clang, llvm-gcc, and dragonegg as well as run tests 31 # llvm-gcc 48 # llvm-gcc 65 # llvm-gcc 85 # llvmbuild --src=~/llvm/commit --src=~/llvm/staging 86 # --src=~/llvm/official --branch=trunk --branch=tags/RELEASE_28 87 # --build=debug --build=release --build=paranoid 88 # --prefix=/home/greened/install --builddir=/home/greened/build [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/Coroutines/ |
D | smoketest.ll | 2 ; levels and -enable-coroutines adds coroutine passes to the pipeline. 4 ; RUN: opt < %s -disable-output -enable-coroutines -debug-pass=Arguments -O0 2>&1 | FileCheck %s 5 ; RUN: opt < %s -disable-output -enable-coroutines -debug-pass=Arguments -O1 2>&1 | FileCheck %s 6 ; RUN: opt < %s -disable-output -enable-coroutines -debug-pass=Arguments -O2 2>&1 | FileCheck %s 7 ; RUN: opt < %s -disable-output -enable-coroutines -debug-pass=Arguments -O3 2>&1 | FileCheck %s 8 ; RUN: opt < %s -disable-output -enable-coroutines -debug-pass=Arguments \ 9 ; RUN: -coro-early -coro-split -coro-elide -coro-cleanup 2>&1 | FileCheck %s 10 ; RUN: opt < %s -disable-output -debug-pass=Arguments 2>&1 \ 11 ; RUN: | FileCheck %s -check-prefix=NOCORO 13 ; CHECK: coro-early [all …]
|
/external/u-boot/drivers/video/ |
D | pwm_backlight.c | 1 // SPDX-License-Identifier: GPL-2.0+ 16 struct gpio_desc enable; member 32 if (priv->reg) { in pwm_backlight_enable() 33 plat = dev_get_uclass_platdata(priv->reg); in pwm_backlight_enable() 34 debug("%s: Enable '%s', regulator '%s'/'%s'\n", __func__, in pwm_backlight_enable() 35 dev->name, priv->reg->name, plat->name); in pwm_backlight_enable() 36 ret = regulator_set_enable(priv->reg, true); in pwm_backlight_enable() 38 debug("%s: Cannot enable regulator for PWM '%s'\n", in pwm_backlight_enable() 39 __func__, dev->name); in pwm_backlight_enable() 45 duty_cycle = priv->period_ns * (priv->default_level - priv->min_level) / in pwm_backlight_enable() [all …]
|
D | simple_panel.c | 1 // SPDX-License-Identifier: GPL-2.0+ 17 struct gpio_desc enable; member 25 debug("%s: start, backlight = '%s'\n", __func__, priv->backlight->name); in simple_panel_enable_backlight() 26 dm_gpio_set_value(&priv->enable, 1); in simple_panel_enable_backlight() 27 ret = backlight_enable(priv->backlight); in simple_panel_enable_backlight() 28 debug("%s: done, ret = %d\n", __func__, ret); in simple_panel_enable_backlight() 42 "power-supply", &priv->reg); in simple_panel_ofdata_to_platdata() 44 debug("%s: Warning: cannot get power supply: ret=%d\n", in simple_panel_ofdata_to_platdata() 46 if (ret != -ENOENT) in simple_panel_ofdata_to_platdata() 51 "backlight", &priv->backlight); in simple_panel_ofdata_to_platdata() [all …]
|
D | broadwell_igd.c | 1 // SPDX-License-Identifier: GPL-2.0 57 debug("%s: addr %p = %x\n", __func__, addr, readl(addr)); in poll32() 60 debug("poll32: timeout: %x\n", readl(addr)); in poll32() 61 return -ETIMEDOUT; in poll32() 71 u8 *regs = priv->regs; in haswell_early_init() 74 /* Enable Force Wake */ in haswell_early_init() 81 /* Enable Counters */ in haswell_early_init() 90 /* Enable DOP Clock Gating */ in haswell_early_init() 93 /* Enable Unit Level Clock Gating */ in haswell_early_init() 149 /* Enable PM Interrupts */ in haswell_early_init() [all …]
|
/external/u-boot/drivers/power/regulator/ |
D | fixed.c | 1 // SPDX-License-Identifier: GPL-2.0+ 17 struct gpio_desc gpio; /* GPIO for regulator enable control */ 32 return -ENXIO; in fixed_regulator_ofdata_to_platdata() 35 uc_pdata->type = REGULATOR_TYPE_FIXED; in fixed_regulator_ofdata_to_platdata() 37 if (dev_read_bool(dev, "enable-active-high")) in fixed_regulator_ofdata_to_platdata() 40 /* Get fixed regulator optional enable GPIO desc */ in fixed_regulator_ofdata_to_platdata() 41 gpio = &dev_pdata->gpio; in fixed_regulator_ofdata_to_platdata() 44 debug("Fixed regulator optional enable GPIO - not found! Error: %d\n", in fixed_regulator_ofdata_to_platdata() 46 if (ret != -ENOENT) in fixed_regulator_ofdata_to_platdata() 51 dev_pdata->startup_delay_us = dev_read_u32_default(dev, in fixed_regulator_ofdata_to_platdata() [all …]
|
D | pbias_regulator.c | 1 // SPDX-License-Identifier: GPL-2.0+ 4 * Jean-Jacques Hiblot <jjhiblot@ti.com> 19 u32 enable; member 44 return -EINVAL; in pbias_write() 46 return regmap_write(priv->regmap, priv->offset, val); in pbias_write() 54 return -EINVAL; in pbias_read() 56 return regmap_read(priv->regmap, priv->offset, (u32 *)buff); in pbias_read() 81 priv->regmap = regmap; in pbias_ofdata_to_platdata() 88 priv->offset = res.start; in pbias_ofdata_to_platdata() 97 children = pmic_bind_children(dev, dev->node, pmic_children_info); in pbias_bind() [all …]
|
/external/u-boot/arch/powerpc/cpu/mpc85xx/ |
D | interrupts.c | 1 // SPDX-License-Identifier: GPL-2.0+ 3 * (C) Copyright 2000-2002 35 out_be32(&pic->gcr, MPC85xx_PICGCR_RST); in interrupt_init_cpu() 36 while (in_be32(&pic->gcr) & MPC85xx_PICGCR_RST) in interrupt_init_cpu() 38 out_be32(&pic->gcr, MPC85xx_PICGCR_M); in interrupt_init_cpu() 39 in_be32(&pic->gcr); in interrupt_init_cpu() 43 /* PIE is same as DIE, dec interrupt enable */ in interrupt_init_cpu() 47 pic->iivpr1 = 0x810001; /* 50220 enable ecm interrupts */ in interrupt_init_cpu() 48 debug("iivpr1@%x = %x\n", (uint)&pic->iivpr1, pic->iivpr1); in interrupt_init_cpu() 50 pic->iivpr2 = 0x810002; /* 50240 enable ddr interrupts */ in interrupt_init_cpu() [all …]
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | Debug.cpp | 1 //===-- Debug.cpp - An easy way to add debug output to your code ----------===// 8 //===----------------------------------------------------------------------===// 12 // command line options to enable it. 14 // In particular, just wrap your code with the DEBUG() macro, and it will be 15 // enabled automatically if you specify '-debug' on the command-line. 17 // that your debug code belongs to class "foo". Then, on the command line, you 18 // can specify '-debug-only=foo' to enable JUST the debug information for the 21 // When compiling in release mode, the -debug-* options and all code in DEBUG() 24 //===----------------------------------------------------------------------===// 27 #include "llvm/Support/Debug.h" [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/GlobalISel/ |
D | gisel-commandline-option.ll | 1 ; RUN: llc -mtriple=aarch64-- -debug-pass=Structure %s -o /dev/null 2>&1 \ 2 ; RUN: -O0 | FileCheck %s --check-prefix ENABLED --check-prefix ENABLED-O0 --check-prefix FALLBACK 4 ; RUN: llc -mtriple=aarch64-- -debug-pass=Structure %s -o /dev/null 2>&1 \ 5 ; RUN: -O0 -aarch64-enable-global-isel-at-O=0 -global-isel-abort=1 \ 6 ; RUN: | FileCheck %s --check-prefix ENABLED --check-prefix ENABLED-O0 --check-prefix NOFALLBACK 8 ; RUN: llc -mtriple=aarch64-- -debug-pass=Structure %s -o /dev/null 2>&1 \ 9 ; RUN: -O0 -aarch64-enable-global-isel-at-O=0 -global-isel-abort=2 \ 10 ; RUN: | FileCheck %s --check-prefix ENABLED --check-prefix ENABLED-O0 --check-prefix FALLBACK 12 ; RUN: llc -mtriple=aarch64-- -debug-pass=Structure %s -o /dev/null 2>&1 \ 13 ; RUN: -global-isel \ [all …]
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | Debug.cpp | 1 //===-- Debug.cpp - An easy way to add debug output to your code ----------===// 8 //===----------------------------------------------------------------------===// 12 // command line options to enable it. 14 // In particular, just wrap your code with the DEBUG() macro, and it will be 15 // enabled automatically if you specify '-debug' on the command-line. 17 // that your debug code belongs to class "foo". Then, on the command line, you 18 // can specify '-debug-only=foo' to enable JUST the debug information for the 21 // When compiling without assertions, the -debug-* options and all code in 22 // DEBUG() statements disappears, so it does not affect the runtime of the code. 24 //===----------------------------------------------------------------------===// [all …]
|
/external/llvm/lib/Support/ |
D | Debug.cpp | 1 //===-- Debug.cpp - An easy way to add debug output to your code ----------===// 8 //===----------------------------------------------------------------------===// 12 // command line options to enable it. 14 // In particular, just wrap your code with the DEBUG() macro, and it will be 15 // enabled automatically if you specify '-debug' on the command-line. 17 // that your debug code belongs to class "foo". Then, on the command line, you 18 // can specify '-debug-only=foo' to enable JUST the debug information for the 21 // When compiling without assertions, the -debug-* options and all code in 22 // DEBUG() statements disappears, so it does not affect the runtime of the code. 24 //===----------------------------------------------------------------------===// [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | Debug.cpp | 1 //===-- Debug.cpp - An easy way to add debug output to your code ----------===// 8 //===----------------------------------------------------------------------===// 12 // command line options to enable it. 15 // be enabled automatically if you specify '-debug' on the command-line. 17 // that your debug code belongs to class "foo". Then, on the command line, you 18 // can specify '-debug-only=foo' to enable JUST the debug information for the 21 // When compiling without assertions, the -debug-* options and all code in 25 //===----------------------------------------------------------------------===// 27 #include "llvm/Support/Debug.h" 41 // built without NDEBUG can depend on via the llvm/Support/Debug.h header. [all …]
|
/external/u-boot/board/theobroma-systems/puma_rk3399/ |
D | puma-rk3399.c | 1 // SPDX-License-Identifier: GPL-2.0+ 14 #include <dm/uclass-internal.h> 24 #include <u-boot/sha256.h> 36 debug("%s: Cannot enable boot on regulator\n", __func__); in board_init() 46 debug("%s: trying to force a power-on reset\n", __func__); in rk3399_force_power_on_reset() 50 debug("%s: no /config node?\n", __func__); in rk3399_force_power_on_reset() 54 if (gpio_request_by_name_nodev(node, "sysreset-gpio", 0, in rk3399_force_power_on_reset() 56 debug("%s: could not find a /config/sysreset-gpio\n", __func__); in rk3399_force_power_on_reset() 71 * This may cause issues during boot-up for some configurations of in spl_board_init() 75 * a power-on reset and (if not) issue an overtemp-reset to reset in spl_board_init() [all …]
|
/external/u-boot/drivers/video/exynos/ |
D | exynos_mipi_dsi_common.c | 1 // SPDX-License-Identifier: GPL-2.0+ 28 /* MIPI-DSIM status types. */ 62 if ((data1 - data_cnt) < 4) { in exynos_mipi_dsi_long_data_wr() 63 if ((data1 - data_cnt) == 3) { in exynos_mipi_dsi_long_data_wr() 67 debug("count = 3 payload = %x, %x %x %x\n", in exynos_mipi_dsi_long_data_wr() 71 } else if ((data1 - data_cnt) == 2) { in exynos_mipi_dsi_long_data_wr() 74 debug("count = 2 payload = %x, %x %x\n", payload, in exynos_mipi_dsi_long_data_wr() 76 } else if ((data1 - data_cnt) == 1) { in exynos_mipi_dsi_long_data_wr() 86 debug("count = 4 payload = %x, %x %x %x %x\n", in exynos_mipi_dsi_long_data_wr() 103 if (dsim->state == DSIM_STATE_ULPS) { in exynos_mipi_dsi_wr_data() [all …]
|
/external/autotest/client/cros/video/ |
D | helper_logger.py | 2 # Use of this source code is governed by a BSD-style license that can be 11 """Return vmodule flag for chrome to enable VDAs/VEAs/JDAs/V4L2IP logs""" 17 chrome_video_vmodule_flag = '--vmodule=' + ','.join(logging_patterns) 24 Return decorator that make verbose video logs enable 33 files = glob.glob('/sys/module/videobuf2_*/parameters/debug') 40 fpath = '/sys/module/s5p_mfc/parameters/debug' 48 #rk3399 debug level is controlled by bits. 49 #Here, 3 means to enable log level 0 and 1. 50 fpath = '/sys/module/rockchip_vpu/parameters/debug' 58 #rk3288 debug level is controlled by bits. [all …]
|
/external/u-boot/arch/powerpc/include/asm/ |
D | processor.h | 19 #define MSR_UCLE (1<<26) /* User-mode cache lock enable (e500) */ 20 #define MSR_VEC (1<<25) /* Enable AltiVec(74xx) */ 21 #define MSR_SPE (1<<25) /* Enable SPE(e500) */ 22 #define MSR_POW (1<<18) /* Enable Power Management */ 23 #define MSR_WE (1<<18) /* Wait State Enable */ 25 #define MSR_CE (1<<17) /* Critical Interrupt Enable */ 27 #define MSR_EE (1<<15) /* External Interrupt Enable */ 29 #define MSR_FP (1<<13) /* Floating Point enable */ 30 #define MSR_ME (1<<12) /* Machine Check Enable */ 33 #define MSR_DWE (1<<10) /* Debug Wait Enable (4xx) */ [all …]
|