HomeSort by relevance Sort by last modified time
    Searched refs:int64Value (Results 1 - 21 of 21) sorted by null

  /hardware/interfaces/drm/1.1/
types.hal 40 * int64Value: 1024
45 * int64Value: 75
76 int64_t int64Value;
93 int64_t int64Value;
  /hardware/google/av/media/sfplugin/
ReflectedParamUpdater.cpp 48 int64_t int64Value;
69 (void)c2Value.get(&int64Value);
70 s << "c2::i64 " << it.first << " = " << int64Value;
91 } else if (it.second.find(&int64Value)) {
92 s << "int64_t " << it.first << " = " << int64Value;
339 int64_t int64Value;
364 if ((param->second.find(&c2Value) && c2Value.get(&int64Value))
365 || param->second.find(&int64Value)) {
366 work(name, desc, &int64Value, sizeof(int64Value));
    [all...]
CCodecConfig.cpp 80 int64_t int64Value;
85 } else if (item.find(&int64Value)) {
86 value = int64Value;
103 int64_t int64Value;
114 } else if (value.get(&int64Value)) {
115 item.set(int64Value);
754 int64_t int64Value;
762 } else if (from.find(&int64Value)) {
763 to->set(int64Value);
782 int64_t int64Value;
    [all...]
  /external/icu/icu4c/source/io/
ufmt_cmn.h 57 int64_t int64Value; /* int, UChar */
uprntf_p.cpp 258 unsigned char arg = (unsigned char)(args[0].int64Value);
360 int64_t num = args[0].int64Value;
427 int64_t num = args[0].int64Value;
463 int64_t num = args[0].int64Value;
497 int64_t num = args[0].int64Value;
793 UChar arg = (UChar)(args[0].int64Value);
    [all...]
  /external/deqp/external/openglcts/modules/common/
glcParallelShaderCompileTests.cpp 96 GLint64 int64Value;
111 gl.getInteger64v(GL_MAX_SHADER_COMPILER_THREADS_KHR, &int64Value);
125 (supportsInt64 && intValue != (GLint)int64Value) || (supportsDouble && intValue != (GLint)doubleValue))
134 message << "int64(" << int64Value << "), ";
  /frameworks/base/core/jni/
android_media_MediaMetricsJNI.cpp 69 keyName, (jlong) prop->u.int64Value);
  /frameworks/av/media/libstagefright/foundation/
AMessage.cpp 230 *value = (float)item->u.int64Value;
251 *value = item->u.int64Value;
287 BASIC_TYPE(Int64,int64Value,int64_t)
570 "int64_t %s = %lld", item.mName, item.u.int64Value);
680 item->u.int64Value = parcel.readInt64();
770 parcel->writeInt64(item.u.int64Value);
837 if (oitem == NULL || item.u.int64Value != oitem->u.int64Value) {
838 diff->setInt64(item.mName, item.u.int64Value);
954 case kTypeInt64: it.set(mItems[index].u.int64Value); break
    [all...]
  /external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
Extension.java 400 Long int64Value = (Long) value;
401 output.writeInt64NoTag(int64Value);
658 Long int64Value = (Long) value;
659 return CodedOutputByteBufferNano.computeInt64Size(fieldNumber, int64Value);
CodedOutputByteBufferNano.java     [all...]
  /frameworks/av/media/libmediametrics/include/
MediaAnalyticsItem.h 225 int64_t int64Value;
  /frameworks/av/media/libmediametrics/
MediaAnalyticsItem.cpp 317 prop->u.int64Value = value;
377 prop->u.int64Value += value;
382 prop->u.int64Value = value;
441 *value = prop->u.int64Value;
706 data->writeInt64(prop->u.int64Value);
798 "%s=%" PRId64 ":", prop->mName, prop->u.int64Value);
  /hardware/google/av/media/sfplugin/tests/
ReflectedParamUpdater_test.cpp 180 int64_t int64Value = 0;
189 EXPECT_EQ(true, c2Value.get(&int64Value));
190 EXPECT_EQ(34, int64Value);
  /hardware/interfaces/automotive/vehicle/2.0/default/impl/vhal_v2_0/
VehicleEmulator.cpp 310 for (auto& int64Value : val->value.int64Values) {
311 protoVal->add_int64_values(int64Value);
  /frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
AMessage.h 279 int64_t int64Value;
  /prebuilts/tools/common/m2/repository/com/google/protobuf/nano/protobuf-javanano/3.0.0-alpha-5/
protobuf-javanano-3.0.0-alpha-5.jar 
  /prebuilts/go/darwin-x86/src/flag/
flag.go 129 type int64Value int64
131 func newInt64Value(val int64, p *int64) *int64Value {
133 return (*int64Value)(p)
136 func (i *int64Value) Set(s string) error {
138 *i = int64Value(v)
142 func (i *int64Value) Get() interface{} { return int64(*i) }
144 func (i *int64Value) String() string { return strconv.FormatInt(int64(*i), 10) }
451 case *intValue, *int64Value:
    [all...]
  /prebuilts/go/linux-x86/src/flag/
flag.go 129 type int64Value int64
131 func newInt64Value(val int64, p *int64) *int64Value {
133 return (*int64Value)(p)
136 func (i *int64Value) Set(s string) error {
138 *i = int64Value(v)
142 func (i *int64Value) Get() interface{} { return int64(*i) }
144 func (i *int64Value) String() string { return strconv.FormatInt(int64(*i), 10) }
451 case *intValue, *int64Value:
    [all...]
  /frameworks/av/drm/libmediadrm/
DrmMetrics.cpp 183 bundle->putLong(name, value.int64Value);
  /hardware/google/av/codec2/tests/
C2Param_test.cpp     [all...]
  /hardware/interfaces/drm/1.1/vts/functional/
drm_hal_clearkey_test.cpp 217 return type == DrmMetricGroup::ValueType::INT64_TYPE && expected == actual.int64Value;

Completed in 950 milliseconds