Home
last modified time | relevance | path

Searched refs:is_a (Results 1 - 23 of 23) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_qpu_disasm.c248 get_special_write_desc(int reg, bool is_a) in get_special_write_desc() argument
250 if (is_a) { in get_special_write_desc()
298 bool is_a = is_mul == ((inst & QPU_WS) != 0); in print_alu_dst() local
302 const char *file = is_a ? "a" : "b"; in print_alu_dst()
307 else if (get_special_write_desc(waddr, is_a)) in print_alu_dst()
308 fprintf(stderr, "%s", get_special_write_desc(waddr, is_a)); in print_alu_dst()
314 } else if (is_a && !(inst & QPU_PM)) { in print_alu_dst()
322 bool is_a = mux != QPU_MUX_B; in print_alu_src() local
323 const char *file = is_a ? "a" : "b"; in print_alu_src()
324 uint32_t raddr = (is_a in print_alu_src()
[all...]
H A Dvc4_qpu_schedule.c150 uint32_t raddr, bool is_a) in process_raddr_deps()
173 if (is_a) in process_raddr_deps()
230 bool is_a = is_add ^ ((inst & QPU_WS) != 0); in process_waddr_deps() local
233 if (is_a) { in process_waddr_deps()
260 if (is_a) in process_waddr_deps()
149 process_raddr_deps(struct schedule_state *state, struct schedule_node *n, uint32_t raddr, bool is_a) process_raddr_deps() argument
/third_party/protobuf/php/src/Google/Protobuf/Internal/
H A DGPBUtil.php593 return is_a($msg, 'Google\Protobuf\Any') ||
594 is_a($msg, "Google\Protobuf\ListValue") ||
595 is_a($msg, "Google\Protobuf\Struct") ||
596 is_a($msg, "Google\Protobuf\Value") ||
597 is_a($msg, "Google\Protobuf\Duration") ||
598 is_a($msg, "Google\Protobuf\Timestamp") ||
599 is_a($msg, "Google\Protobuf\FieldMask") ||
605 return is_a($msg, "Google\Protobuf\DoubleValue") ||
606 is_a($msg, "Google\Protobuf\FloatValue") ||
607 is_a(
[all...]
H A DMessage.php821 if (is_a($submsg, "Google\Protobuf\Duration")) {
843 } else if (is_a($submsg, "Google\Protobuf\FieldMask")) {
855 !is_a($submsg, "Google\Protobuf\Value")) {
1143 if (is_a($this, "Google\Protobuf\Any")) {
1156 if (is_a($this, "Google\Protobuf\DoubleValue") ||
1157 is_a($this, "Google\Protobuf\FloatValue") ||
1158 is_a($this, "Google\Protobuf\Int64Value") ||
1159 is_a($this, "Google\Protobuf\UInt64Value") ||
1160 is_a($this, "Google\Protobuf\Int32Value") ||
1161 is_a(
[all...]
/third_party/rust/crates/nom/benchmarks/benches/
H A Dini_str.rs7 bytes::complete::{is_a, tag, take_till, take_while},
22 is_a(" \r\n")(i) in space_or_line_ending()
28 opt(is_a(" \r\n")), in category()
/third_party/skia/tests/
H A DPathBuilderTest.cpp145 bool is_a = a.isOval(&ra); in is_eq() local
147 if (is_a != is_b) { in is_eq()
150 if (is_a && (ra != rb)) { in is_eq()
157 bool is_a = a.isRRect(&rra); in is_eq() local
159 if (is_a != is_b) { in is_eq()
162 if (is_a && (rra != rrb)) { in is_eq()
/third_party/protobuf/php/tests/
H A DWrapperTypeSettersTest.php239 if (is_object($expectedElement) && is_a($expectedElement, '\Google\Protobuf\StringValue')) {
280 if (is_object($expectedElement) && is_a($expectedElement, '\Google\Protobuf\StringValue')) {
282 } elseif (is_object($expectedElement) && is_a($expectedElement, '\Google\Protobuf\Internal\MapEntry')) {
/third_party/rust/crates/nom/tests/
H A Dini_str.rs2 bytes::complete::{is_a, tag, take_till, take_while},
21 is_a(" \r\n")(i) in space_or_line_ending()
27 opt(is_a(" \r\n")), in category()
/third_party/unity/test/
H A Drakefile_helper.rb46 include_dirs.delete_if { |dir| dir.is_a?(Array) }
69 result = if strings.is_a?(Array)
118 if (values[i].is_a?(Array))
/third_party/cJSON/tests/unity/test/
H A Drakefile_helper.rb43 include_dirs.delete_if { |dir| dir.is_a?(Array) }
66 result = if strings.is_a?(Array)
/third_party/cJSON/tests/unity/examples/example_3/
H A Drakefile_helper.rb33 include_dirs.delete_if { |dir| dir.is_a?(Array) }
56 result = if strings.is_a?(Array)
/third_party/unity/examples/example_3/
H A Drakefile_helper.rb37 include_dirs.delete_if { |dir| dir.is_a?(Array) }
60 if strings.is_a?(Array)
/third_party/rust/crates/nom/src/
H A Dstr.rs6 bytes::complete::{is_a, is_not, tag, take, take_till, take_until},
424 is_a(MATCH)(input) in is_a_succeed()
430 "Parser `is_a` consumed leftover input. Leftover `{}`.", in is_a_succeed()
435 "Parser `is_a` doesn't return the string it consumed on success. Expected `{}`, got `{}`.", in is_a_succeed()
441 "Parser `is_a` didn't succeed when it should have. \ in is_a_succeed()
474 is_a(MATCH)(input) in is_a_fail()
479 "Parser `is_a` didn't fail when it should have. Got `{:?}`.", in is_a_fail()
/third_party/cJSON/tests/unity/extras/fixture/
H A Drakefile_helper.rb37 result = if strings.is_a?(Array)
/third_party/rust/crates/nom/src/bytes/
H A Dtests.rs18 fn is_a() { in is_a() functions
19 use crate::bytes::streaming::is_a; in is_a()
22 is_a("ab")(i) in is_a()
H A Dstreaming.rs141 /// use nom::bytes::streaming::is_a;
144 /// is_a("1234567890ABCDEF")(s)
153 pub fn is_a<T, Input, Error: ParseError<Input>>( in is_a() functions
H A Dcomplete.rs139 /// use nom::bytes::complete::is_a;
142 /// is_a("1234567890ABCDEF")(s)
151 pub fn is_a<T, Input, Error: ParseError<Input>>( in is_a() functions
/third_party/protobuf/ruby/tests/
H A Dwell_known_types_test.rb80 list.is_a?(Google::Protobuf::ListValue)
H A Drepeated_field_test.rb277 assert m.repeated_string.hash.is_a?(Integer)
588 if expected_result.is_a?(Enumerator)
H A Dcommon_tests.rb163 assert e.is_a?(::TypeError)
/third_party/protobuf/ruby/compatibility_tests/v3.0.0/tests/
H A Drepeated_field_test.rb264 assert m.repeated_string.hash.is_a?(Integer)
566 if expected_result.is_a?(Enumerator)
/third_party/rust/crates/nom/src/number/
H A Dstreaming.rs1315 let (i, o) = crate::bytes::streaming::is_a(&b"0123456789abcdefABCDEF"[..])(input)?; in hex_u32()
H A Dcomplete.rs1346 let (i, o) = crate::bytes::complete::is_a(&b"0123456789abcdefABCDEF"[..])(input)?; in hex_u32()

Completed in 23 milliseconds