/third_party/alsa-utils/seq/aplaymidi/ |
H A D | arecordmidi.c | 92 long val; in arg_parse_decimal_num() local 96 val = strtol(str, &endptr, 0); in arg_parse_decimal_num() 106 return val; in arg_parse_decimal_num()
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | units_test.cpp | 102 CharString val; in testUnitConstantFreshness() local 103 val.appendInvariantChars(uVal, status); in testUnitConstantFreshness() 110 dqVal.setToDecNumber(val.toStringPiece(), parseStatus); in testUnitConstantFreshness()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/ |
H A D | ICUServiceTest.java | 55 public void confirmBoolean(String message, boolean val) { in confirmBoolean() argument 56 msg(message, val ? LOG : ERR, !val, true); in confirmBoolean()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
H A D | ICUServiceTest.java | 52 public void confirmBoolean(String message, boolean val) { in confirmBoolean() argument 53 msg(message, val ? LOG : ERR, !val, true); in confirmBoolean()
|
/third_party/libuv/src/unix/ |
H A D | process.c | 259 static void uv__write_int(int fd, int val) { in uv__write_int() argument 263 n = write(fd, &val, sizeof(val)); in uv__write_int()
|
/third_party/libwebsockets/lib/core/ |
H A D | libwebsockets.c | 1357 lws_cmdline_option(int argc, const char **argv, const char *val) in lws_cmdline_option() argument 1359 size_t n = strlen(val); in lws_cmdline_option() 1364 if (!strncmp(argv[c], val, n)) { in lws_cmdline_option()
|
/third_party/mesa3d/src/compiler/spirv/ |
H A D | vtn_glsl450.c | 138 struct vtn_ssa_value *val = vtn_create_ssa_value(b, src->type); in matrix_inverse() local 140 val->elems[i]->def = nir_fmul(&b->nb, adj_col[i], det_inv); in matrix_inverse() 142 return val; in matrix_inverse()
|
/third_party/node/test/parallel/ |
H A D | test-buffer-indexof.js | 364 ].forEach((val) => { 366 () => b.indexOf(val), 372 common.invalidArgTypeHelper(val)
|
/third_party/node/test/common/ |
H A D | index.js | 369 for (const val in global) { 370 if (!knownGlobals.includes(global[val])) { 371 leaked.push(val);
|
/third_party/node/deps/cares/src/lib/ |
H A D | ares__buf.c | 797 const unsigned char *val, in ares__buf_split_isduplicate() 815 if (ares__memeq_ci(ptr, val, len)) { in ares__buf_split_isduplicate() 819 if (memcmp(ptr, val, len) == 0) { in ares__buf_split_isduplicate() 796 ares__buf_split_isduplicate(ares__llist_t *list, const unsigned char *val, size_t len, ares__buf_split_t flags) ares__buf_split_isduplicate() argument
|
H A D | ares__hosts_file.c | 430 const char *val = ares__llist_node_val(node); in ares__hosts_file_add() local 440 if (ares__htable_strvp_get(hosts->hosthash, val, NULL)) { in ares__hosts_file_add() 444 if (!ares__htable_strvp_insert(hosts->hosthash, val, entry)) { in ares__hosts_file_add()
|
/third_party/mesa3d/src/mesa/state_tracker/ |
H A D | st_context.c | 525 enum pipe_texture_transfer_mode val = screen->get_param(screen, PIPE_CAP_TEXTURE_TRANSFER_MODES); in st_create_context_priv() local 526 st->prefer_blit_based_texture_transfer = (val & PIPE_TEXTURE_TRANSFER_BLIT) != 0; in st_create_context_priv() 527 st->allow_compute_based_texture_transfer = (val & PIPE_TEXTURE_TRANSFER_COMPUTE) != 0; in st_create_context_priv()
|
/third_party/mesa3d/src/microsoft/clc/ |
H A D | compute_test.cpp | 767 struct dxil_validator *val = dxil_create_validator(NULL); in validate_module() local 769 bool res = dxil_validate_module(val, dxil.binary.data, in validate_module() 774 dxil_destroy_validator(val); in validate_module()
|
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_bld_interp.c | 122 attrib_name(LLVMValueRef val, unsigned attrib, unsigned chan, const char *suffix) in attrib_name() argument 125 lp_build_name(val, "pos.%c%s", "xyzw"[chan], suffix); in attrib_name() 127 lp_build_name(val, "input%u.%c%s", attrib - 1, "xyzw"[chan], suffix); in attrib_name()
|
/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
H A D | sb_shader.cpp | 345 value *val = get_ro_value(const_values, VLK_CONST, v); in get_const_value() local 346 val->literal_value = v; in get_const_value() 347 return val; in get_const_value()
|
/third_party/mesa3d/src/panfrost/bifrost/valhall/ |
H A D | va_pack.c | 122 unsigned val = (idx.value & BITFIELD_MASK(5)); in va_pack_fau_64() local 125 return (0x3 << 6) | (val << 1); in va_pack_fau_64() 127 return (0x2 << 6) | (val << 1); in va_pack_fau_64()
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/table/ |
H A D | RangeTable.java | 901 private static Row of(RangeTree row, Column<?> col, Optional<?> val, Row next) { in of() argument 902 checkArgument(!row.isEmpty(), "empty ranges not permitted (col=%s, val=%s)", col, val); in of() 904 row, new AutoValue_RangeTable_Cell(Assignment.ofOptional(col, val), next.head())); in of()
|
/third_party/qrcodegen/rust/src/ |
H A D | lib.rs | 1211 /// Requires len ≤ 31 and val < 2<sup>len</sup>. 1212 pub fn append_bits(&mut self, val: u32, len: u8) { in append_bits() 1213 assert!(len <= 31 && val >> len == 0, "Value out of range"); in append_bits() 1214 self.0.extend((0 .. i32::from(len)).rev().map(|i| get_bit(val, i))); // Append bit by bit in append_bits()
|
/third_party/qrcodegen/cpp/ |
H A D | qrcodegen.cpp | 823 void BitBuffer::appendBits(std::uint32_t val, int len) { in appendBits() argument 824 if (len < 0 || len > 31 || val >> len != 0) in appendBits() 827 this->push_back(((val >> i) & 1) != 0); in appendBits()
|
/third_party/qrcodegen/python/ |
H A D | qrcodegen.py | 885 def append_bits(self, val: int, n: int) -> None: 887 value to this buffer. Requires n >= 0 and 0 <= val < 2^n.""" 888 if (n < 0) or (val >> n != 0): 890 self.extend(((val >> i) & 1) for i in reversed(range(n)))
|
/third_party/python/Lib/ |
H A D | plistlib.py | 148 val = gd[key] 149 if val is None: 151 lst.append(int(val))
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/ |
H A D | vktApiMemoryRequirementInvarianceTests.cpp | 664 size_t val = objs[order[i]]->getSize(m_context); in iterate() local 666 if (val != refSizes[order[i]]) in iterate() 673 << val in iterate()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/ |
H A D | vktApiMemoryRequirementInvarianceTests.cpp | 632 size_t val = objs[order[i]]->getSize(m_context); in iterate() local 634 if (val != refSizes[order[i]]) in iterate() 641 << val in iterate()
|
/third_party/vk-gl-cts/executor/ |
H A D | xeTestResultParser.cpp | 52 deInt64 val; in toInt64() local 54 s >> val; in toInt64() local 56 return val; in toInt64()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-subset-cff-common.hh | 373 parsed_cs_op_t val; in add_call_op() local 374 val.init (subr_num); in add_call_op() 375 SUPER::add_op (op, str_ref, val); in add_call_op()
|