HomeSort by relevance Sort by last modified time
    Searched defs:int_value (Results 1 - 25 of 47) sorted by null

1 2

  /frameworks/compile/mclinker/lib/Target/
ELFAttributeData.cpp 41 uint64_t int_value = leb128::decode<uint64_t>(pBuf, size); local
42 pValue.setIntValue(static_cast<unsigned int>(int_value));
  /external/libbrillo/brillo/dbus/
dbus_param_writer_unittest.cc 37 int32_t int_value = 0; local
42 EXPECT_TRUE(PopValueFromReader(&reader, &int_value));
46 EXPECT_EQ(2, int_value);
57 int32_t int_value = 0; local
62 EXPECT_TRUE(PopValueFromReader(&reader, &int_value));
66 EXPECT_EQ(9, int_value);
92 int32_t int_value = 0; local
97 EXPECT_TRUE(PopValueFromReader(&reader, &int_value));
101 EXPECT_EQ(5, int_value);
116 int32_t int_value = 0 local
151 int32_t int_value = 0; local
175 int32_t int_value = 0; local
    [all...]
  /external/deqp/external/openglcts/modules/gles31/
es31cTextureStorageMultisampleSampleMaskiTests.cpp 165 glw::GLint int_value = -1; local
167 gl.getIntegeri_v(GL_SAMPLE_MASK_VALUE, index, &int_value);
170 if (int_value != mask)
es31cTextureStorageMultisampleGLCoverageTests.cpp 104 glw::GLint int_value = -1; local
106 gl.getIntegerv(pname, &int_value);
109 if (int_value < 1)
111 m_testCtx.getLog() << tcu::TestLog::Message << "An invalid integer value " << int_value
123 if ((int_value != 0 && bool_value == GL_FALSE) || (int_value == 0 && bool_value != GL_FALSE))
127 << " (integer value reported for the same property:" << int_value << ")"
139 if (de::abs(float_value - float(int_value)) > epsilon)
143 << " (integer value reported for the same property:" << int_value << ")"
154 glw::GLint int_value = 1 local
397 glw::GLint int_value = 0; local
524 glw::GLint int_value = 1; local
    [all...]
es31cTextureStorageMultisampleGetTexLevelParameterifvTests.cpp 606 glw::GLint int_value = 0; local
    [all...]
  /external/libbrillo/policy/tests/
libpolicy_unittest.cc 55 int int_value = -1; local
56 ASSERT_TRUE(policy.GetPolicyRefreshRate(&int_value));
57 ASSERT_EQ(100, int_value);
182 int int_value; local
189 ASSERT_FALSE(policy.GetPolicyRefreshRate(&int_value));
  /external/v8/src/runtime/
runtime-numbers.cc 116 int int_value = FastD2I(value); local
117 if (value == FastI2D(int_value) && Smi::IsValid(int_value)) {
118 return Smi::FromInt(int_value);
  /external/perfetto/src/protozero/
proto_utils_unittest.cc 34 uint64_t int_value; member in struct:protozero::proto_utils::__anon32009::VarIntExpectation
112 uint8_t* res = WriteVarInt<uint64_t>(exp.int_value, buf);
116 if (exp.int_value <= std::numeric_limits<uint32_t>::max()) {
118 WriteVarInt<uint32_t>(static_cast<uint32_t>(exp.int_value), buf);
155 ASSERT_EQ(exp.int_value, value);
175 uint64_t int_value; member in struct:protozero::proto_utils::__anon32009::FieldExpectation
210 ASSERT_EQ(exp.int_value, field_intvalue);
  /art/libdexfile/dex/
hidden_api_access_flags.h 69 uint32_t int_value = (flags.IsFirstBitSet() ? 1 : 0) + (flags.IsSecondBitSet() ? 2 : 0); local
70 return static_cast<ApiList>(int_value);
82 uint32_t int_value = static_cast<uint32_t>(value); local
83 flags.SetFirstBit((int_value & 1) != 0);
84 flags.SetSecondBit((int_value & 2) != 0);
91 uint32_t int_value = (runtime_access_flags & kAccHiddenApiBits) >> kAccFlagsShift; local
92 return static_cast<ApiList>(int_value);
  /external/clang/test/PCH/
cxx_exprs.h 21 int int_value; variable
22 typedef __typeof__(double(int_value)) functional_cast_result;
types.c 9 INT int_value; variable
14 ASInt *as_int_ptr1 = &int_value; // expected-error{{changes address space of pointer}}
26 int_ptr int_value_ptr = &int_value;
68 typeof_17 *t17 = &int_value;
  /external/deqp/external/openglcts/modules/glesext/geometry_shader/
esextcGeometryShaderConstantVariables.cpp 283 glw::GLint int_value = 0; local
286 gl.getIntegerv(m_glExtTokens.MAX_GEOMETRY_ATOMIC_COUNTER_BUFFERS, &int_value);
290 if (int_value < m_min_MaxGeometryAtomicCounterBuffers)
293 << "Reported GL_MAX_GEOMETRY_ATOMIC_COUNTER_BUFFERS_EXT constant value " << int_value
300 gl.getIntegerv(m_glExtTokens.MAX_GEOMETRY_ATOMIC_COUNTERS, &int_value);
304 if (int_value < m_min_MaxGeometryAtomicCounters)
307 << int_value << " is smaller than required minimum value of "
314 gl.getIntegerv(m_glExtTokens.MAX_GEOMETRY_IMAGE_UNIFORMS, &int_value);
318 if (int_value < m_min_MaxGeometryImagesUniforms)
321 << int_value << " is smaller than required minimum value of
    [all...]
  /external/deqp/external/openglcts/modules/glesext/texture_cube_map_array/
esextcTextureCubeMapArrayGetterCalls.cpp 423 glw::GLint int_value = 0; local
451 gl.getIntegerv(GL_TEXTURE_BINDING_CUBE_MAP_ARRAY, &int_value);
473 glw::GLint int_value = 0; local
476 gl.getTexParameteriv(GL_TEXTURE_CUBE_MAP_ARRAY, pname, &int_value);
487 if (int_value != expected_value)
494 << int_value << "]"
513 glw::GLint int_value = 0; local
524 pname, &int_value);
666 if ((should_use_equal_comparison && (expected_property_int_value != int_value)) ||
667 (!should_use_equal_comparison && (expected_property_int_value < int_value)))
    [all...]
  /external/libchrome/dbus/
values_util.cc 227 int int_value = 0; local
228 bool success = value.GetAsInteger(&int_value);
230 writer->AppendInt32(int_value);
  /external/webrtc/talk/media/base/
codec_unittest.cc 237 int int_value = 0; local
238 EXPECT_TRUE(codec.GetParam("a", &int_value));
239 EXPECT_EQ(1, int_value);
240 EXPECT_FALSE(codec.GetParam("b", &int_value));
241 EXPECT_FALSE(codec.GetParam("c", &int_value));
  /external/adhd/cras/src/tests/
dbus_test.h 153 int int_value; member in struct:DBusMatch::Arg
  /external/deqp/external/openglcts/modules/glesext/tessellation_shader/
esextcTessellationShaderProperties.cpp 80 glw::GLint int_value[4] = { 0 }; local
93 gl.getIntegerv(pname, int_value);
113 if (memcmp(expected_int_value, int_value, sizeof(int) * n_components) != 0)
  /external/libmojo/mojo/public/cpp/bindings/tests/
union_unittest.cc 1139 int64_t int_value() const { return int_value_; } function in class:mojo::test::SmallCacheImpl
    [all...]
  /external/libchrome/base/json/
json_value_serializer_unittest.cc 235 int int_value = 0; local
236 ASSERT_TRUE(root_dict->GetInteger("int", &int_value));
237 ASSERT_EQ(42, int_value);
430 int int_value = 0; local
431 ASSERT_TRUE(root_dict->GetInteger("int", &int_value));
432 ASSERT_EQ(42, int_value);
  /external/protobuf/src/google/protobuf/util/internal/
protostream_objectwriter.cc 808 StatusOr<int64> int_value = data.ToInt64(); local
809 if (int_value.ok()) {
812 DataPiece(SimpleItoa(int_value.ValueOrDie()), true));
823 StatusOr<uint64> int_value = data.ToUint64(); local
824 if (int_value.ok()) {
827 DataPiece(SimpleItoa(int_value.ValueOrDie()), true));
    [all...]
  /external/tensorflow/tensorflow/core/debug/
debug_graph_utils.cc 403 int64 int_value = 0; local
404 if (!::tensorflow::strings::safe_strto64(attr_value, &int_value)) {
409 debug_node->AddAttr<int>(attr.name(), int_value);
  /frameworks/base/cmds/statsd/src/
FieldValue.h 272 int_value = v;
292 int_value = v;
302 int32_t int_value; member in union:android::os::statsd::Value::__anon45579
  /frameworks/native/libs/vr/libpdx/
variant_tests.cpp 644 int int_value = 0; member in struct:Visitor
649 void Visit(int value) { int_value = value; }
662 EXPECT_EQ(10, visitor.int_value);
  /system/extras/tests/memtest/
bandwidth.cpp 61 int int_value; member in union:__anon3029
80 (*values)[name].int_value = strtol(argv[++i], NULL, 0);
98 size = values["size"].int_value;
146 bench->set_num_loops(values["num_warm_loops"].int_value);
149 bench->set_num_loops(values["num_loops"].int_value);
215 (*values)["num_warm_loops"].int_value = 1000000;
216 (*values)["num_loops"].int_value = 10000000;
221 if (values->count("size") > 0 && ((*values)["size"].int_value % 64) != 0) {
249 (*values)["run_time"].int_value = run_time;
250 (*values)["size"].int_value = bench->size()
    [all...]
  /toolchain/binutils/binutils-2.27/gold/
attributes.h 111 int_value() const function in class:gold::Object_attribute

Completed in 1071 milliseconds

1 2