Searched refs:val (Results 176 - 200 of 261) sorted by relevance

1234567891011

/fuchsia/zircon/system/ulib/ddk/include/ddk/protocol/
H A Dethernet.h58 uint64_t val; member in union:ethmac_netbuf::__anon931
/fuchsia/zircon/third_party/uapp/dash/src/
H A Darith_yylex.c79 yylval.val = strtoimax(buf, (char **)&arith_buf, 0);
H A Dvar.h128 struct var *setvar(const char *name, const char *val, int flags);
/fuchsia/zircon/kernel/dev/pcie/include/dev/
H A Dpci_config.h130 virtual void Write(const PciReg8 addr, uint8_t val) const = 0;
131 virtual void Write(const PciReg16 addr, uint16_t val) const = 0;
132 virtual void Write(const PciReg32 addr, uint32_t val) const = 0;
/fuchsia/zircon/system/uapp/gpt/
H A Dgpt.c335 uint8_t val = 0; local
358 val += char_val << (4 * (1 - nibbles));
361 bytes_out[out_idx++] = val;
363 val = 0;
582 long val = strtol(optarg, &end, 10); local
586 if (val < 0 || val > 15) {
590 tries = val;
594 long val = strtol(optarg, &end, 10); local
598 if (val <
[all...]
/fuchsia/zircon/system/utest/evil/
H A Devil.c138 int val = n * info->n; local
140 if (x[i] != val) {
151 memset(x, val, sz);
/fuchsia/zircon/system/utest/fs/
H A Dtest-append.cpp205 size_t val = static_cast<size_t>(buf[i]); local
206 ASSERT_LE(val, sizeof(counts), "Read unexpected value from file");
207 counts[val]++;
/fuchsia/zircon/system/dev/bus/pci/
H A Dproxy.c86 static zx_status_t pci_op_config_read(void* ctx, uint16_t offset, size_t width, uint32_t* val) { argument
89 val == NULL) {
102 *val = resp.cfg.value;
110 static zx_status_t pci_op_config_write(void* ctx, uint16_t offset, size_t width, uint32_t val) { argument
120 .value = val,
/fuchsia/zircon/system/dev/usb/dwc2/
H A Ddwc2.c328 uint16_t val = 0x2; local
329 usb_request_copyto(usb_req, (void*)&val, sizeof(val), 0);
330 complete_request(dwc->rh_intr_req, ZX_OK, sizeof(val), dwc);
400 regs->core_interrupt_mask.val = 0;
401 regs->core_interrupts.val = 0xffffffff;
403 core_interrupt_mask.val = 0;
799 chanptr->interrupt_mask.val = 0;
800 chanptr->interrupts.val = 0xffffffff;
1135 chanptr->interrupt_mask.val
[all...]
/fuchsia/zircon/system/dev/input/i2c-hid/
H A Di2c-hid.c213 static inline size_t bcdtoa(uint16_t val, char str[static 6], bool pad) { argument
216 if (val >> 12) {
217 str[idx++] = (val >> 12) + '0';
219 str[idx++] = ((val >> 8) & 0xf) + '0';
221 str[idx++] = ((val >> 4) & 0xf) + '0';
222 str[idx++] = (val & 0xf) + '0';
/fuchsia/zircon/kernel/arch/x86/
H A Dmmu_mem_types.cpp234 uint64_t val = read_msr(msr); local
236 printf(" f %#05x-%#05x: %#02x\n", base, base + record_size - 1, (uint8_t)val);
238 val >>= 8;
/fuchsia/zircon/kernel/dev/interrupt/arm_gic/v2/
H A Darm_gicv2.cpp175 u_int val = local
185 LTRACEF("GICD_SGIR: %x\n", val);
187 GICREG(0, GICD_SGIR) = val;
/fuchsia/zircon/kernel/platform/pc/
H A Ddebug.cpp59 static void uart_write(uint8_t reg, uint8_t val) { argument
61 writel(val, uart_mem_addr + 4 * reg);
63 outp((uint16_t)(uart_io_port + reg), val);
/fuchsia/zircon/third_party/ulib/ngunwind/src/dwarf/
H A DGfde.c29 is_cie_id (unw_word_t val, int is_debug_frame) argument
35 return (val == - (unw_word_t) 1);
37 return (val == 0);
/fuchsia/zircon/third_party/ulib/ngunwind/include/ngunwind/private/
H A Dlibunwind-dynamic.h93 unw_word_t val; /* auxiliary value */ member in struct:unw_dyn_op
/fuchsia/zircon/kernel/vm/
H A Dvm_unittest.cpp97 uint32_t val = (uint32_t)seed; local
99 val ^= (uint32_t)(seed >> 32);
102 ptr[i] = val;
104 val = test_rand(val);
114 uint32_t val = (uint32_t)seed; local
116 val ^= (uint32_t)(seed >> 32);
119 if (ptr[i] != val) {
121 val);
125 val
[all...]
/fuchsia/zircon/kernel/include/kernel/
H A Dthread.h352 static inline void* tls_set(uint entry, void* val) { argument
355 curr_thread->tls[entry] = val;
/fuchsia/zircon/system/dev/audio/intel-hda/codecs/realtek/
H A Drealtek-codec.cpp352 VERBOSE_LOG("SEND: nid %2hu verb 0x%05x\n", cmd.nid, cmd.verb.val);
356 i + 1, cmd_count, cmd.nid, cmd.verb.val, res);
/fuchsia/zircon/system/dev/ethernet/dwmac/
H A Ddwmac.h121 zx_status_t MDIOWrite(uint32_t reg, uint32_t val);
122 zx_status_t MDIORead(uint32_t reg, uint32_t* val);
/fuchsia/zircon/system/uapp/aslr-analysis/
H A Dmain.cpp122 uintptr_t val = reports[i].*field; local
123 if (val & (1ULL << bit)) {
/fuchsia/zircon/system/uapp/display-test/
H A Dvirtual-layer.h129 void SetAlpha(bool enable, float val) { argument
131 alpha_val_ = val;
/fuchsia/zircon/system/ulib/fuzz-utils/
H A Dfuzzer.cpp168 fbl::String val(mark, ptr - mark);
170 return SetOption(key.c_str(), val.c_str());
230 long int val = strtol(version, &endptr, 10); local
234 if (val > max) {
235 max = val;
339 const char* val; local
341 while (options_.next(&key, &val)) {
342 out->push_back(fbl::StringPrintf("-%s=%s", key, val).c_str());
/fuchsia/zircon/system/ulib/kvstore/
H A Dkvstore-test.c41 static int kvs_check(kvstore_t* kvs, const char* key, const char* val) { argument
46 if (strcmp(val, out)) {
/fuchsia/zircon/system/utest/crypto/
H A Dbytes.cpp21 bool AllEqual(const void* buf, uint8_t val, zx_off_t off, size_t len) { argument
27 if(u8[i] != val) {
/fuchsia/zircon/third_party/lib/cortex-strings/no-neon/src/aarch64/
H A Dmemset.S46 #define val w1 define
73 ands A_lw, val, #255

Completed in 381 milliseconds

1234567891011