| /freebsd/sys/contrib/device-tree/Bindings/power/supply/ |
| H A D | rohm,bd99954.yaml | 1 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Matti Vaittinen <mazziesaccount@gmail.com> 11 - Markus Laine <markus.laine@fi.rohmeurope.com> 12 - Mikko Mutanen <mikko.mutanen@fi.rohmeurope.com> 15 The ROHM BD99954 is a Battery Management LSI for 1-4 cell Lithium-Ion 16 secondary battery intended to be used in space-constraint equipment such 18 provides a Dual-source Battery Charger, two port BC1.2 detection and a 21 $ref: power-supply.yaml# [all …]
|
| H A D | battery.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Sebastian Reichel <sre@kernel.org> 14 In smart batteries, these are typically stored in non-volatile memory 16 no appropriate non-volatile memory, or it is unprogrammed/incorrect. 27 Batteries must be referenced by chargers and/or fuel-gauges using a phandle. 28 The phandle's property should be named "monitored-battery". 32 const: simple-battery 34 device-chemistry: [all …]
|
| H A D | richtek,rt5033-charger.yaml | 1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/power/supply/richtek,rt5033-charger.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Jakob Hauser <jahau@rocketmail.com> 14 under sub-node named "charger" using the following format. 18 const: richtek,rt5033-charger 20 monitored-battery: 25 precharge-current-microamp: 26 Current of pre-charge mode. The pre-charge current levels are 350 mA [all …]
|
| H A D | maxim,max77693.yaml | 1 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Krzysztof Kozlowski <krzk@kernel.org> 21 const: maxim,max77693-charger 23 maxim,constant-microvolt: 25 Battery constant voltage in uV. The charger will operate in fast 26 charge constant current mode till battery voltage reaches this level. 27 Then the charger will switch to fast charge constant voltage mode. 30 Valid values: 3650000 - 4400000, step by 25000 (rounded down) [all …]
|
| H A D | sc2731_charger.txt | 4 - compatible: Should be "sprd,sc2731-charger". 5 - reg: Address offset of charger register. 6 - phys: Contains a phandle to the USB phy. 9 - monitored-battery: phandle of battery characteristics devicetree node. 11 - charge-term-current-microamp: current for charge termination phase. 12 - constant-charge-voltage-max-microvolt: maximum constant input voltage. 18 compatible = "simple-battery"; 19 charge-term-current-microamp = <120000>; 20 constant-charge-voltage-max-microvolt = <4350000>; 27 spi-max-frequency = <26000000>; [all …]
|
| H A D | maxim,max14577.yaml | 1 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Krzysztof Kozlowski <krzk@kernel.org> 22 - maxim,max14577-charger 23 - maxim,max77836-charger 25 maxim,constant-uvolt: 27 Battery Constant Voltage in uV 32 maxim,eoc-uamp: 34 Current in uA for End-Of-Charge mode. [all …]
|
| H A D | bq2515x.yaml | 1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 4 --- 6 $schema: http://devicetree.org/meta-schemas/core.yaml# 8 title: TI bq2515x 500-mA Linear charger family 11 - Andrew Davis <afd@ti.com> 17 push-button controller. 26 - ti,bq25150 27 - ti,bq25155 33 ac-detect-gpios: 39 reset-gpios: [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | ConstantEmitter.h | 1 //===--- ConstantEmitter.h - IR constant emission ---------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 31 /// Whether non-abstract components of the emitter have been initialized. 37 /// Whether the constant-emission failed. 40 /// Whether we're in a constant context. 43 /// The AST address space where this (non-abstract) initializer is going. 47 llvm::SmallVector<std::pair<llvm::Constant *, llvm::GlobalVariable*>, 4> 65 /// Is the current emission context abstract? [all …]
|
| H A D | ConstantInitBuilder.cpp | 1 //===--- ConstantInitBuilder.cpp - Global initializer builder -------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // This file defines out-of-line routines for building initializers for 13 //===----------------------------------------------------------------------===// 23 if (Data.is<llvm::Constant*>()) { in getType() 24 return Data.get<llvm::Constant*>()->getType(); in getType() 26 return Data.get<ConstantInitBuilderBase*>()->Buffer[0]->getType(); in getType() 33 builder->abandon(0); in abandon() 40 if (Data.is<llvm::Constant*>()) { in installInGlobal() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | LoopSimplifyCFG.cpp | 1 //===--------- LoopSimplifyCFG.cpp - Loop CFG Simplification Pass ---------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 14 //===----------------------------------------------------------------------===// 35 #define DEBUG_TYPE "loop-simplifycfg" 37 static cl::opt<bool> EnableTermFolding("enable-loop-simplifycfg-term-folding", 51 Instruction *TI = BB->getTerminator(); in getOnlyLiveSuccessor() 53 if (BI->isUnconditional()) in getOnlyLiveSuccessor() 55 if (BI->getSuccessor(0) == BI->getSuccessor(1)) in getOnlyLiveSuccessor() 56 return BI->getSuccessor(0); in getOnlyLiveSuccessor() [all …]
|
| /freebsd/contrib/less/ |
| H A D | cmdbuf.c | 2 * Copyright (C) 1984-2025 Mark Nudelman 30 static char cmdbuf[CMDBUF_SIZE]; /* Buffer for holding a multi-char command */ 31 static int cmd_col; /* Current column of the cursor */ 46 static constant char *tk_ipoint; 47 static constant char *tk_trial = NULL; 61 #define HISTFILE_FIRST_LINE ".less-history-file:" 107 * History for the current command. 144 public void cmd_putstr(constant char *s) in cmd_putstr() 148 constant char *endline = s + strlen(s); in cmd_putstr() 151 constant char *os = s; in cmd_putstr() [all …]
|
| H A D | search.c | 2 * Copyright (C) 1984-2025 Mark Nudelman 68 constant char *osc8_search_param = NULL; 72 * Structures for maintaining a set of ranges for hilites and filtered-out 73 * lines. Each range is stored as a node within a red-black tree, and we 76 * search for constant-time lookup if the next search is near enough to 77 * the previous. To aid that, we overlay a secondary doubly-linked list 78 * on top of the red-black tree so we can find the preceding/succeeding 79 * nodes also in constant time. 82 * of the previous (for amortised constant time allocation). Since our only 85 * from the pool in-order until capacity is reached. [all …]
|
| H A D | prompt.c | 2 * Copyright (C) 1984-2025 Mark Nudelman 14 * selected by the -m/-M options. 37 extern constant char *editor; 38 extern constant char *editproto; 45 static constant char s_proto[] = 46 "?n?f%f .?m(%T %i of %m) ..?e(END) ?x- Next\\: %x..%t"; 47 static constant char m_proto[] = 48 "?n?f%f .?m(%T %i of %m) ..?e(END) ?x- Next\\: %x.:?pB%pB\\%:byte %bB?s/%s...%t"; 49 static constant char M_proto[] = 50 …"?f%f .?n?m(%T %i of %m) ..?ltlines %lt-%lb?L/%L. :byte %bB?s/%s. .?e(END) ?x- Next\\: %x.:?pB%pB\… [all …]
|
| H A D | edit.c | 2 * Copyright (C) 1984-2025 Mark Nudelman 60 * words, returning each one as a standard null-terminated string. 69 constant char *esc = get_meta_escape(); in init_textlist() 73 tlist->string = skipsp(str); in init_textlist() 74 tlist->endstring = tlist->string + strlen(tlist->string); in init_textlist() 75 for (s = str; s < tlist->endstring; s++) in init_textlist() 81 } else if (esclen > 0 && s + esclen < tlist->endstring && in init_textlist() 85 s += esclen - 1; in init_textlist() 104 public constant char * forw_textlist(struct textlist *tlist, constant char *prev) in forw_textlist() 106 constant char *s; in forw_textlist() [all …]
|
| H A D | lsystem.c | 2 * Copyright (C) 1984-2025 Mark Nudelman 44 public void lsystem(constant char *cmd, constant char *donemsg) in lsystem() 48 constant char *shell; in lsystem() 58 * unless the command starts with a "-". in lsystem() 60 if (cmd[0] == '-') in lsystem() 87 * Close the current input file. in lsystem() 93 * De-initialize the terminal and take out of raw mode. in lsystem() 124 * <$SHELL -c "command"> instead of just <command>. in lsystem() 211 setdisk(cwd[0] - 'a'); in lsystem() 213 setdisk(cwd[0] - 'A'); in lsystem() [all …]
|
| H A D | tags.c | 2 * Copyright (C) 1984-2025 Mark Nudelman 17 public constant char ztags[] = "tags"; 18 public constant char *tags = ztags; 47 static enum tag_result findctag(constant char *tag); 48 static enum tag_result findgtag(constant char *tag, int type); 49 static constant char *nextgtag(void); 50 static constant char *prevgtag(void); 53 static int getentry(char *buf, constant char **tag, constant char **file, constant char **line); 79 (tp)->next = TAG_END; \ 80 (tp)->prev = taglist.tl_last; \ [all …]
|
| H A D | option.c | 2 * Copyright (C) 1984-2025 Mark Nudelman 16 * the command line option, toggled via the "-" command, 26 static constant char *optstring(constant char *s, char **p_str, constant char *printopt, constant c… 38 static constant char * opt_desc(struct loption *o) in opt_desc() 41 if (o->oletter == OLETTER_NONE) in opt_desc() 42 SNPRINTF1(buf, sizeof(buf), "--%s", o->onames->oname); in opt_desc() 44 SNPRINTF2(buf, sizeof(buf), "-%c (--%s)", o->oletter, o->onames->oname); in opt_desc() 50 * For example, if the option letter is 'x', just return "-x". 52 public constant char * propt(char c) in propt() 56 sprintf(buf, "-%s", prchar((LWCHAR) c)); in propt() [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/mfd/ |
| H A D | max77693.txt | 1 Maxim MAX77693 multi-function device 4 - PMIC, 5 - CHARGER, 6 - LED, 7 - MUIC, 8 - HAPTIC 14 - compatible : Must be "maxim,max77693". 15 - reg : Specifies the i2c slave address of PMIC block. 16 - interrupts : This i2c device has an IRQ line connected to the main SoC. 19 - regulators : The regulators of max77693 have to be instantiated under subnode [all …]
|
| /freebsd/lib/libsys/ |
| H A D | ntp_adjtime.2 | 61 to adjust the phase and frequency of the phase- or frequency-lock loop 78 .Bd -literal 86 long constant; /* pll time constant (rw) */ 91 * The following read-only structure members are implemented 109 .Bl -tag -width tolerance -compact 111 Defines what settings should be changed with the current 113 call (write-only). 115 .Bl -tag -width MOD_TIMECONST -compact -offset indent 127 set PLL time constant 135 system time in small increments (read-write). [all …]
|
| /freebsd/contrib/lua/src/ |
| H A D | lparser.h | 18 ** optimizations; An 'expdesc' structure describes a potentially-delayed 21 ** by short-circuit operators 'and'/'or'). 28 VNIL, /* constant nil */ 29 VTRUE, /* constant true */ 30 VFALSE, /* constant false */ 31 VK, /* constant in 'k'; info = index of constant in 'k' */ 32 VKFLT, /* floating constant; nval = numerical float value */ 33 VKINT, /* integer constant; ival = numerical integer value */ 34 VKSTR, /* string constant; strval = TString address; 41 VCONST, /* compile-time <const> variable; [all …]
|
| /freebsd/contrib/bearssl/src/symcipher/ |
| H A D | aes_pwr8.c | 58 * v0 = all-zero word in key_schedule_128() 59 * v1 = constant -8 / +8, copied into four words in key_schedule_128() 60 * v2 = current subkey in key_schedule_128() 62 * v6 = constant 8, copied into four words in key_schedule_128() 63 * v7 = constant 0x11B, copied into four words in key_schedule_128() 64 * v8 = constant for byteswapping words in key_schedule_128() 68 vspltisw(1, -8) in key_schedule_128() 167 * v0 = all-zero word in key_schedule_192() 168 * v1 = constant -8 / +8, copied into four words in key_schedule_192() 169 * v2, v3 = current subkey in key_schedule_192() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | AsmPrinter.h | 1 //===- llvm/CodeGen/AsmPrinter.h - AsmPrinter Framework ---------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 13 //===----------------------------------------------------------------------===// 39 class Constant; variable 95 /// all of the global MC-related objects for the generated translation unit. 99 /// contains the transient state for the current translation unit that we are 100 /// generating (such as the current section etc). 103 /// The current machine function. 106 /// This is a pointer to the current MachineModuleInfo. [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/Expression/ |
| H A D | DWARFExpression.cpp | 1 //===-- DWARFExpression.cpp -----------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 74 auto *MCRegInfo = abi ? &abi->GetMCRegisterInfo() : nullptr; in DumpLocation() 76 bool IsEH) -> llvm::StringRef { in DumpLocation() 80 MCRegInfo->getLLVMRegNum(DwarfRegNum, IsEH)) in DumpLocation() 81 if (const char *RegName = MCRegInfo->getName(*LLVMRegNum)) in DumpLocation() 88 .print(s->AsRawOstream(), DumpOpts, nullptr); in DumpLocation() 104 reg_ctx->ConvertRegisterKindToRegisterNumber(reg_kind, reg_num); in ReadRegisterValueAsScalar() 111 const RegisterInfo *reg_info = reg_ctx->GetRegisterInfoAtIndex(native_reg); in ReadRegisterValueAsScalar() [all …]
|
| /freebsd/sys/contrib/device-tree/src/arm64/qcom/ |
| H A D | msm8216-samsung-fortuna3g.dts | 1 // SPDX-License-Identifier: GPL-2.0-only 3 /dts-v1/; 5 #include "msm8916-samsung-fortuna-common.dtsi" 8 model = "Samsung Galaxy Grand Prime (SM-G530H)"; 10 chassis-type = "handset"; 14 charge-term-current-microamp = <200000>; 15 constant-charge-current-max-microamp = <1000000>; 16 constant-charge-voltage-max-microvolt = <4350000>;
|
| H A D | msm8916-samsung-grandprimelte.dts | 1 // SPDX-License-Identifier: GPL-2.0-only 3 /dts-v1/; 5 #include "msm8916-samsung-fortuna-common.dtsi" 8 model = "Samsung Galaxy Grand Prime (SM-G530FZ)"; 10 chassis-type = "handset"; 14 charge-term-current-microamp = <200000>; 15 constant-charge-current-max-microamp = <1000000>; 16 constant-charge-voltage-max-microvolt = <4350000>;
|