HomeSort by relevance Sort by last modified time
    Searched defs:int_value (Results 1 - 25 of 33) 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/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/libbrillo/policy/tests/
libpolicy_unittest.cc 63 int int_value = -1; local
64 ASSERT_TRUE(policy.GetPolicyRefreshRate(&int_value));
65 ASSERT_EQ(100, int_value);
185 int int_value; local
192 ASSERT_FALSE(policy.GetPolicyRefreshRate(&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/libchrome/dbus/
values_util.cc 230 int int_value = 0; local
231 bool success = value.GetAsInteger(&int_value);
233 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/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 237 int int_value = 0; local
238 ASSERT_TRUE(root_dict->GetInteger("int", &int_value));
239 ASSERT_EQ(42, int_value);
436 int int_value = 0; local
437 ASSERT_TRUE(root_dict->GetInteger("int", &int_value));
438 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...]
  /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:__anon114444
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.25/gold/
attributes.h 111 int_value() const function in class:gold::Object_attribute
  /toolchain/binutils/binutils-2.25/opcodes/
nds32-dis.c 148 int int_value, new_value; local
153 int_value =
156 int_value = __GF (insn, pfd->bitpos, pfd->bitsize) << pfd->shift;
158 if (int_value < 0)
159 func (stream, "#%d", int_value);
161 func (stream, "#0x%x", int_value);
164 int_value =
166 new_value = int_value;
172 new_value = int_value & 0x03;
173 new_value |= ((int_value & 0x10) >> 2)
238 int int_value, ifthe1st = 1; local
    [all...]
  /external/libchrome/base/trace_event/
trace_event_argument.cc 259 int int_value; local
260 value.GetAsInteger(&int_value);
261 SetIntegerWithCopiedName(name, int_value);
313 int int_value; local
314 value.GetAsInteger(&int_value);
315 AppendInteger(int_value);
trace_event_unittest.cc 2269 int int_value; local
2452 int int_value; local
    [all...]
  /frameworks/native/libs/vr/libdisplay/include/private/dvr/
display_protocol.h 156 int int_value = 0; local
157 GetAttribute(SurfaceAttribute::ZOrder, &int_value,
159 return int_value;
  /art/dexlayout/
dex_writer.cc 80 uint32_t int_value = float_union.i_; local
83 buffer[index--] = int_value >> 24;
84 int_value <<= 8;
85 } while (int_value != 0);
  /external/libchrome/base/
values_unittest.cc 73 int int_value = 0; local
79 ASSERT_FALSE(mixed_list->GetInteger(0, &int_value));
80 ASSERT_EQ(0, int_value);
85 ASSERT_FALSE(mixed_list->GetInteger(2, &int_value));
86 ASSERT_EQ(0, int_value);
92 ASSERT_TRUE(mixed_list->GetInteger(1, &int_value));
93 ASSERT_EQ(42, int_value);
107 ASSERT_TRUE((*mixed_list->Find(sought_value))->GetAsInteger(&int_value));
108 ASSERT_EQ(42, int_value);
    [all...]
  /external/libcups/cups/
dest-options.c 80 int int_value; /* Integer value */ local
171 int_value = atoi(value);
174 if (attr->values[i].integer == int_value)
182 int_value = atoi(value);
185 if (int_value >= attr->values[i].range.lower &&
186 int_value <= attr->values[i].range.upper)
2019 int int_value; \/* Integer value *\/ local
    [all...]
  /external/v8/src/ast/
ast-value-factory.h 267 int int_value; local
268 if (DoubleToSmiInteger(n, &int_value)) {
270 smi_ = int_value;
  /external/valgrind/coregrind/m_gdbserver/
server.c 196 int int_value; local
217 int_value = 0;
220 case -2: int_value = 0; break;
221 case -1: int_value = 0; break;
222 case 0: int_value = 1; break;
242 if (int_value) { VG_(gdb_printf) (
275 int_value = 0;
279 int_value = strtol (wcmd, &the_end, 10);
286 VG_(dyn_vgdb_error), int_value);
287 VG_(dyn_vgdb_error) = int_value;
    [all...]
  /art/runtime/interpreter/
unstarted_runtime.cc 91 uint32_t int_value = static_cast<uint32_t>(shadow_frame->GetVReg(arg_offset)); local
94 if (!isascii(int_value)) {
97 int_value);
102 char char_value = static_cast<char>(int_value);
    [all...]
  /external/protobuf/src/google/protobuf/
text_format.cc 716 int64 int_value; local
717 DO(ConsumeSignedInteger(&int_value, kint32max));
718 value = SimpleItoa(int_value); // for error reporting
719 enum_value = enum_type->FindValueByNumber(int_value);
    [all...]

Completed in 1432 milliseconds

1 2