Home
last modified time | relevance | path

Searched refs:empty_value (Results 1 – 10 of 10) sorted by relevance

/third_party/ltp/testcases/open_posix_testsuite/functional/semaphores/
Dsem_conpro.c101 int empty_value = 0; in main() local
114 if (-1 == sem_init(&buf.empty, shared, empty_value)) { in main()
/third_party/ltp/testcases/open_posix_testsuite/stress/semaphores/
Dmulti_con_pro.c150 int empty_value = 0; in main() local
184 if (-1 == sem_init(&buf->empty, shared, empty_value)) { in main()
/third_party/protobuf/src/google/protobuf/util/internal/testdata/
Dstruct.proto38 StructWrapper empty_value = 1; field
/third_party/node/deps/v8/src/compiler/
Dcommon-operator.h257 Node* Get(Node* empty_value) const { in Get() argument
258 return IsReal() ? GetReal() : empty_value; in Get()
Djs-call-reducer.h191 Reduction ReduceMathMinMax(Node* node, const Operator* op, Node* empty_value);
Djs-call-reducer.cc2443 Node* empty_value) { in ReduceMathMinMax() argument
2450 ReplaceWithValue(node, empty_value); in ReduceMathMinMax()
2451 return Replace(empty_value); in ReduceMathMinMax()
/third_party/rust/crates/clap/src/parser/
Dvalidator.rs43 return Err(Error::empty_value( in validate()
Dparser.rs1313 return Err(ClapError::empty_value( in verify_num_args()
/third_party/rust/crates/clap/src/builder/
Dvalue_parser.rs969 return Err(crate::Error::empty_value( in parse()
1918 return Err(crate::Error::empty_value( in parse_ref()
/third_party/rust/crates/clap/src/error/
Dmod.rs375 pub(crate) fn empty_value(cmd: &Command, good_vals: &[String], arg: String) -> Self { in empty_value() method