Home
last modified time | relevance | path

Searched refs:value (Results 13151 - 13175 of 36034) sorted by relevance

1...<<521522523524525526527528529530>>...1442

/third_party/libevdev/libevdev/
H A Dmake-event-names.py132 print(" { .name = \"%s\", .value = %s }," % (name, name))
138 print(" unsigned int value;")
187 value = int(m.group(2), 0)
196 bits.max_codes[name] = value
206 b[value] = name
/third_party/libfuse/include/
H A Dfuse_common.h57 the *fh* value may not match the *fh* value that would
85 released. If set, lock_owner shall contain a valid value.
254 * request. If the new mtime differs from the previous value, any
464 * indicate the value requested by the filesystem. The requested
465 * value must usually be smaller than the indicated value.
484 * Maximum size of read requests. A value of zero indicates no
566 * The value should be power of 10. The default is 1, i.e. full
895 unsigned int value);
[all...]
/third_party/ltp/testcases/kernel/syscalls/bpf/
H A Dbpf_map01.c58 attr->value = ptr_to_u64(val_get); in run()
93 attr->value = ptr_to_u64(val_set); in run()
110 attr->value = ptr_to_u64(val_get); in run()
119 "%s map lookup returned different value", in run()
/third_party/ltp/testcases/kernel/input/
H A Dinput06.c113 static int check_event(struct input_event *iev, int event, int code, int value) in check_event() argument
115 return iev->type == event && iev->code == code && iev->value == value; in check_event()
/third_party/node/deps/v8/src/compiler/
H A Dcompilation-dependencies.h49 // |receiver_map| yields the constant value |constant|, which is held by
53 // c) the value of |property_name| in |holder| changes.
54 // If PropertyKind is kData, |constant| is the value of the property in
69 // For arrays, arguments objects and value wrappers, only consider the field
98 const ObjectRef& value);
103 // Record the assumption that the {value} read from {holder} at {index} on the
104 // background thread is the correct value for a given property.
109 const ObjectRef& value);
111 // Record the assumption that the {value} read from {holder} at {index} on the
112 // background thread is the correct value fo
[all...]
/third_party/node/deps/v8/src/codegen/
H A Dexternal-reference-encoder.cc91 Value value(maybe_index.FromJust()); in NameOfAddress()
92 if (value.is_from_api()) return "<from api>"; in NameOfAddress()
93 return isolate->external_reference_table()->name(value.index()); in NameOfAddress()
/third_party/node/deps/v8/src/heap/cppgc/
H A Dmarking-verifier.cc29 parent_ ? parent_->GetName().value : "Stack", in VerifyMarked()
31 child_header.GetName().value, child_header.ObjectStart()); in VerifyMarked()
70 CHECK_EQ(expected_marked_bytes.value(), verifier_found_marked_bytes_); in Run()
/third_party/node/deps/v8/src/objects/
H A Djs-locale.h73 static bool StartsWithUnicodeLanguageId(const std::string& value);
77 static bool Is38AlphaNumList(const std::string& value);
80 static bool Is3Alpha(const std::string& value);
H A Dproperty-descriptor.h85 Handle<Object> value() const { return value_; } in value() function in v8::internal::PropertyDescriptor
86 void set_value(Handle<Object> value) { value_ = value; } in set_value() argument
/third_party/node/deps/v8/src/sandbox/
H A Dexternal-pointer-table-inl.h72 void ExternalPointerTable::Set(uint32_t index, Address value, in Set() argument
76 DCHECK_EQ(0, value & kExternalPointerTagMask); in Set()
79 store_atomic(index, value | tag); in Set()
134 // We don't need to perform the CAS in a loop: if the new value is not equal in Mark()
135 // to the old value, then the mutator must've just written a new value into in Mark()
/third_party/node/deps/v8/src/torque/
H A Dtype-inference.cc29 type_parameter_from_name_[type_parameters[i].name->value] = i; in TypeArgumentInference()
64 auto result = type_parameter_from_name_.find(basic->name->value); in Match()
95 parameter->name->value}; in MatchGeneric()
/third_party/mesa3d/src/panfrost/bifrost/
H A Dbi_validate.c91 unsigned r = I->src[0].value; in bi_validate_preload()
123 unsigned v = I->dest[d].value; in bi_validate_width()
134 unsigned v = I->src[s].value; in bi_validate_width()
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_flow.h86 LLVMValueRef value);
92 * Bitwise AND the mask with the given value, if a previous mask was set.
96 LLVMValueRef value);
100 LLVMValueRef value);
/third_party/node/deps/openssl/openssl/crypto/
H A Dcpuid.c40 static WCHAR value[48]; in ossl_getenv() local
41 DWORD len = GetEnvironmentVariableW(L"OPENSSL_ia32cap", value, 48); in ossl_getenv()
43 return (len > 0 && len < 48) ? value : NULL; in ossl_getenv()
59 /* return largest base value to make caller terminate the loop */ in todigit()
/third_party/node/deps/openssl/openssl/crypto/pkcs7/
H A Dpk7_attr.c47 p = cap->value.sequence->data; in STACK_OF()
49 ASN1_item_d2i(NULL, &p, cap->value.sequence->length, in STACK_OF()
75 alg->parameter->value.integer = nbit; in STACK_OF()
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/testing/
H A DRangeTableSubject.java73 * specified, with {@code null} meanings "no value present". This method does not ensure that no
102 lenientFormat("unexpected value in row: expected %s, got %s", expected, actual))); in hasRanges()
105 failWithoutActual(simpleFact(lenientFormat("missing value in row: expected %s", expected))); in hasRanges()
111 * Returns a {@link RangeTreeSubject} for asserting about the ranges assigned to the given value
114 public RangeTreeSubject assigned(Column<?> column, Object value) { in assigned() argument
116 actual.getRanges(column, value), "%s in column %s", value, column); in assigned()
/third_party/rust/crates/aho-corasick/src/
H A Dstate_id.rs27 /// representation. If the given value cannot fit in the chosen
29 pub fn usize_to_state_id<S: StateID>(value: usize) -> Result<S> { in usize_to_state_id()
30 if value > S::max_id() { in usize_to_state_id()
33 Ok(S::from_usize(value)) in usize_to_state_id()
92 /// Implementors must not return a `usize` value greater than
/third_party/rust/crates/cxx/gen/build/src/syntax/
H A Dmap.rs42 pub fn insert(&mut self, key: K, value: V) -> Option<V> { in insert()
46 Some(mem::replace(&mut i.1, value)) in insert()
50 self.vec.push((key, value)); in insert()
103 pub fn insert(&mut self, key: K, value: V) -> Option<V> { in insert()
104 self.0.insert(key, value) in insert()
/third_party/rust/crates/cxx/gen/lib/src/syntax/
H A Dmap.rs42 pub fn insert(&mut self, key: K, value: V) -> Option<V> { in insert()
46 Some(mem::replace(&mut i.1, value)) in insert()
50 self.vec.push((key, value)); in insert()
103 pub fn insert(&mut self, key: K, value: V) -> Option<V> { in insert()
104 self.0.insert(key, value) in insert()
/third_party/rust/crates/cxx/macro/src/syntax/
H A Dmap.rs42 pub fn insert(&mut self, key: K, value: V) -> Option<V> { in insert()
46 Some(mem::replace(&mut i.1, value)) in insert()
50 self.vec.push((key, value)); in insert()
103 pub fn insert(&mut self, key: K, value: V) -> Option<V> { in insert()
104 self.0.insert(key, value) in insert()
/third_party/rust/crates/cxx/syntax/
H A Dmap.rs42 pub fn insert(&mut self, key: K, value: V) -> Option<V> { in insert()
46 Some(mem::replace(&mut i.1, value)) in insert()
50 self.vec.push((key, value)); in insert()
103 pub fn insert(&mut self, key: K, value: V) -> Option<V> { in insert()
104 self.0.insert(key, value) in insert()
/third_party/rust/crates/cxx/gen/cmd/src/syntax/
H A Dmap.rs42 pub fn insert(&mut self, key: K, value: V) -> Option<V> { in insert()
46 Some(mem::replace(&mut i.1, value)) in insert()
50 self.vec.push((key, value)); in insert()
103 pub fn insert(&mut self, key: K, value: V) -> Option<V> { in insert()
104 self.0.insert(key, value) in insert()
/third_party/pcre2/pcre2/maint/
H A DGenerateUcpTables.py66 # etc., along with comments. We need to add "bidi" in front of each value, in
182 value = '0' variable
184 value = 'ucp_' + utt[1] variable
187 f.write(' { %3d, %s, %s }%s\n' % (offset, utt[2], value, last))
/third_party/python/Lib/ctypes/test/
H A Dtest_funcptr.py92 def NoNullHandle(value):
93 if not value:
95 return value
118 ## b.value = s
/third_party/openssl/crypto/pkcs7/
H A Dpk7_attr.c43 p = cap->value.sequence->data; in STACK_OF()
45 ASN1_item_d2i(NULL, &p, cap->value.sequence->length, in STACK_OF()
71 alg->parameter->value.integer = nbit; in STACK_OF()

Completed in 23 milliseconds

1...<<521522523524525526527528529530>>...1442