HomeSort by relevance Sort by last modified time
    Searched defs:uint64Value (Results 1 - 7 of 7) sorted by null

  /hardware/google/av/media/sfplugin/
ReflectedParamUpdater.cpp 49 uint64_t uint64Value;
73 (void)c2Value.get(&uint64Value);
74 s << "c2::u64 " << it.first << " = " << uint64Value;
78 (void)c2Value.get((c2_cntr64_t*)&uint64Value);
79 s << "c2::c64 " << it.first << " = " << uint64Value;
CCodecConfig.cpp 104 uint64_t uint64Value;
116 } else if (value.get(&uint64Value) && uint64Value <= uint64_t(INT64_MAX)) {
118 item.set((int64_t)uint64Value);
    [all...]
  /prebuilts/go/darwin-x86/src/flag/
flag.go 165 type uint64Value uint64
167 func newUint64Value(val uint64, p *uint64) *uint64Value {
169 return (*uint64Value)(p)
172 func (i *uint64Value) Set(s string) error {
174 *i = uint64Value(v)
178 func (i *uint64Value) Get() interface{} { return uint64(*i) }
180 func (i *uint64Value) String() string { return strconv.FormatUint(uint64(*i), 10) }
455 case *uintValue, *uint64Value:
    [all...]
  /prebuilts/go/linux-x86/src/flag/
flag.go 165 type uint64Value uint64
167 func newUint64Value(val uint64, p *uint64) *uint64Value {
169 return (*uint64Value)(p)
172 func (i *uint64Value) Set(s string) error {
174 *i = uint64Value(v)
178 func (i *uint64Value) Get() interface{} { return uint64(*i) }
180 func (i *uint64Value) String() string { return strconv.FormatUint(uint64(*i), 10) }
455 case *uintValue, *uint64Value:
    [all...]
  /external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
Extension.java 404 Long uint64Value = (Long) value;
405 output.writeUInt64NoTag(uint64Value);
661 Long uint64Value = (Long) value;
662 return CodedOutputByteBufferNano.computeUInt64Size(fieldNumber, uint64Value);
CodedOutputByteBufferNano.java     [all...]
  /prebuilts/tools/common/m2/repository/com/google/protobuf/nano/protobuf-javanano/3.0.0-alpha-5/
protobuf-javanano-3.0.0-alpha-5.jar 

Completed in 146 milliseconds