Home
last modified time | relevance | path

Searched refs:bool_val (Results 1 – 20 of 20) sorted by relevance

/external/jemalloc_new/test/unit/
Demitter.c369 def.bool_val = true; in emit_table_row()
374 def.bool_val = false; in emit_table_row()
380 def.bool_val = false; in emit_table_row()
/external/tensorflow/tensorflow/core/debug/
Ddebug_graph_utils.cc31 Status ParseBoolString(const string& bool_str, bool* bool_val) { in ParseBoolString() argument
35 *bool_val = false; in ParseBoolString()
38 *bool_val = true; in ParseBoolString()
/external/flatbuffers/tests/
DJavaScriptTest.js287 var bool_val = true;
316 case 0: builder.addFieldInt8(f, bool_val, 0); break;
351 case 0: assert.strictEqual(!!view.getInt8(field_offset), bool_val); break;
DphpTest.php200 $bool_val = true;
236 $builder->addBoolX($f, $bool_val, 0);
288 $assert->strictEqual(!!$view->getBool($field_offset), $bool_val);
Dtest.cpp963 const uint8_t bool_val = true; in FuzzTest1() local
993 case 0: builder.AddElement<uint8_t>(off, bool_val, 0); break; in FuzzTest1()
1023 case 0: CompareTableFieldValue(table, off, bool_val); break; in FuzzTest1()
/external/jemalloc_new/include/jemalloc/internal/
Demitter.h44 bool bool_val; member
430 col->type, (const void *)&col->bool_val); in emitter_table_row()
/external/selinux/checkpolicy/
Dpolicy_parse.y336 expandattribute_def : EXPANDATTRIBUTE names bool_val ';'
356 bool_def : BOOL identifier bool_val ';'
359 tunable_def : TUNABLE identifier bool_val ';'
362 bool_val : CTRUE
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dconst_op.cc54 0, xla::Broadcast(xla::ConstantR0<bool>(b, proto_.bool_val(0)), in Compile()
/external/tensorflow/tensorflow/core/grappler/optimizers/data/
Dmap_and_batch_fusion_test.cc101 EXPECT_EQ(drop_remainder_node.attr().at("value").tensor().bool_val(0), false); in TEST()
271 EXPECT_EQ(drop_remainder_node.attr().at("value").tensor().bool_val(0), false); in TEST()
Dgraph_utils_test.cc45 EXPECT_EQ(bool_node->attr().at("value").tensor().bool_val(0), true); in TEST()
/external/jemalloc_new/src/
Dstats.c137 CTL_GET(cmd, (counter_type *)&dst->bool_val, counter_type); in mutex_stats_read_global()
162 (counter_type *)&dst->bool_val, counter_type); in mutex_stats_read_arena()
184 (counter_type *)&dst->bool_val, counter_type); in mutex_stats_read_arena_bin()
211 (const void *)&col->bool_val); in mutex_stats_emit()
/external/tensorflow/tensorflow/core/framework/
Dtensor.proto67 repeated bool bool_val = 11 [packed = true]; field
/external/webrtc/talk/app/webrtc/
Dstatstypes.h297 bool bool_val() const;
Dstatstypes.cc376 bool StatsReport::Value::bool_val() const { in bool_val() function in webrtc::StatsReport::Value
/external/tensorflow/tensorflow/python/framework/
Dfast_tensor_util.pyx134 tensor_proto.bool_val.append(nparray.item(i))
Dtensor_util.py158 tensor_proto.bool_val.extend([x.item() for x in proto_values])
637 values = np.fromiter(tensor.bool_val, dtype=dtype)
/external/flatbuffers/tests/rust_usage_test/tests/
Dintegration_test.rs1015 let bool_val: bool = true; in table_of_mixed_scalars_fuzz() localVariable
1048 0 => {builder.push_slot::<bool>(f, bool_val, false);} in table_of_mixed_scalars_fuzz()
1092 0 => { assert_eq!(bool_val, table.get::<bool>(f, Some(false)).unwrap()); } in table_of_mixed_scalars_fuzz()
/external/v8/src/wasm/
Dwasm-interpreter.cc1983 int4 bool_val = Pop().to_s128().to_i32x4(); in ExecuteSimdOp() local
1986 res.val[i] = v2.val[i] ^ ((v1.val[i] ^ v2.val[i]) & bool_val.val[i]); in ExecuteSimdOp()
/external/tensorflow/tensorflow/lite/toco/
Dimport_tensorflow.cc311 static bool get(const TensorProto& p, int i) { return p.bool_val(i); } in get()
/external/tensorflow/tensorflow/core/grappler/optimizers/
Dconstant_folding_test.cc941 EXPECT_EQ(true && true, node.attr().at("value").tensor().bool_val(0)); in TEST_F()