HomeSort by relevance Sort by last modified time
    Searched defs:val (Results 476 - 500 of 5073) sorted by null

<<11121314151617181920>>

  /external/syslinux/gpxe/src/include/
getopt.h 33 /** Location into which to store @c val, or NULL.
35 * See the description for @c val for more details.
49 int val; member in struct:option
  /external/v8/testing/gtest/include/gtest/
gtest-message.h 115 inline Message& operator <<(const T& val) {
131 *ss_ << val;
165 Message& operator <<(BasicNarrowIoManip val) {
166 *ss_ << val; local
  /external/v8/tools/clang/blink_gc_plugin/
JsonWriter.h 39 void Write(const size_t val) {
41 *os_ << val; local
43 void Write(const std::string& val) {
45 *os_ << "\"" << val << "\""; local
47 void Write(const std::string& key, const size_t val) {
49 *os_ << "\"" << key << "\":" << val; local
51 void Write(const std::string& key, const std::string& val) {
53 *os_ << "\"" << key << "\":\"" << val << "\""; local
  /external/valgrind/memcheck/tests/s390x/
cds.c 33 quad_word val; local
35 val.high = 0;
36 val.low |= 0xFFFFFFFF00000000ull;
38 return val;
  /external/valgrind/memcheck/tests/
test-plo.c 31 ULong val = *(ULong*)s; local
33 ULong val2 = val - 0x0101010101010101ULL;
35 val2 ^= val;
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/
gtest-message.h 115 inline Message& operator <<(const T& val) {
131 *ss_ << val;
165 Message& operator <<(BasicNarrowIoManip val) {
166 *ss_ << val; local
  /external/webrtc/webrtc/base/
stringencode.h 82 char hex_encode(unsigned char val);
84 bool hex_decode(char ch, unsigned char* val);
202 static inline std::string ToString(const T& val) {
203 std::string str; ToString(val, &str); return str;
208 T val; FromString(str, &val); return val; local
213 T val(defaultValue); FromString(str, &val); return val;
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
byte_io_unittest.cc 29 T val = 0; local
31 val = (val << 8) + (negative ? (0xFF - i) : (i + 1));
34 val |= static_cast<T>(-1) << (8 * num_bytes);
36 return val;
  /external/zlib/src/contrib/infback9/
inftree9.h 21 of the bit buffer. val is the actual byte to output in the case
27 unsigned short val; /* offset in table or code value */ member in struct:__anon39647
  /external/zlib/src/contrib/iostream/
zfstream.h 95 gzomanip(gzofstream &(*f)(gzofstream &, T), T v) : func(f), val(v) { } function in class:gzomanip
98 T val; member in class:gzomanip
103 return (*m.func)(s, m.val);
  /external/zlib/src/
inftrees.h 21 of the bit buffer. val is the actual byte to output in the case
27 unsigned short val; /* offset in table or code value */ member in struct:__anon39663
  /external/zopfli/src/zopfli/
hash.h 33 int val; /* Current hash value. */ member in struct:ZopfliHash
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_seek_synch.cpp 133 uint16 val; local
215 val = (tmp1 << 3);
216 val |= (tmp2 >> 5);
221 val = 0; // force mismatch
224 if (val == SYNC_WORD)
284 uint16 val; local
290 val = (uint16)getUpTo17bits(inputStream, SYNC_WORD_LNGTH);
292 while (((val&SYNC_WORD) != SYNC_WORD) && (inputStream->usedBits < availableBits))
294 val <<= 8;
295 val |= getUpTo9bits(inputStream, 8)
    [all...]
  /frameworks/base/core/java/com/android/internal/app/procstats/
PssTable.java 77 long val; local
79 val = getValue(key, PSS_MINIMUM);
80 if (val > minPss) {
84 val = getValue(key, PSS_AVERAGE);
86 (long)(((val*(double)count)+(avgPss*(double)inCount)) / (count+inCount)));
88 val = getValue(key, PSS_MAXIMUM);
89 if (val < maxPss) {
93 val = getValue(key, PSS_USS_MINIMUM);
94 if (val > minUss) {
98 val = getValue(key, PSS_USS_AVERAGE)
    [all...]
  /frameworks/base/core/jni/hwbinder/
EphemeralStorage.cpp 60 const char *val = env->GetStringUTFChars(obj, NULL); local
65 item.mPtr = (void *)val;
69 s->setToExternal((char *)val, strlen(val));
79 const Type *val = env->Get ## NewType ## ArrayElements(obj, NULL); \
84 item.mPtr = (void *)val; \
90 vec->setToExternal(const_cast<Type *>(val), len); \
  /frameworks/base/telephony/java/android/telephony/
Rlog.java 106 String val = String.valueOf(pii); local
107 if (pii == null || TextUtils.isEmpty(val) || isLoggable(tag, Log.VERBOSE)) {
108 return val;
110 return "[" + secureHash(val.getBytes()) + "]";
121 String val = String.valueOf(pii); local
122 if (pii == null || TextUtils.isEmpty(val) || enablePiiLogging) {
123 return val;
125 return "[" + secureHash(val.getBytes()) + "]";
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
stats_scorer.cpp 33 float val = static_cast<float>(pImg[i]); local
34 sum += val;
35 sumSquares += val * val;
59 float val = static_cast<float>(*(pImg + disp + x)); local
60 sum += val;
61 sumSquares += val * val;
  /frameworks/base/tools/aapt/
ResourceFilter.cpp 29 AaptLocaleValue val; local
30 if (val.initFromFilterString(part)) {
33 val.writeTo(&entry.first);
  /frameworks/base/tools/aapt2/compile/
PseudolocaleGenerator_test.cpp 192 String* val = test::GetValue<String>(table.get(), "android:string/four"); local
193 ASSERT_NE(nullptr, val);
194 val->SetTranslatable(false);
217 val = test::GetValueForConfig<String>(table.get(), "android:string/three",
219 ASSERT_NE(nullptr, val);
220 EXPECT_EQ(std::string("three"), *val->value);
  /frameworks/base/tools/aapt2/util/
Maybe_test.cpp 82 Maybe<int> val = make_nothing<int>(); local
83 EXPECT_FALSE(val);
93 Maybe<int> val = make_value(23); local
94 ASSERT_TRUE(val);
95 EXPECT_EQ(23, val.value());
103 Maybe<Dummy> val = make_nothing<Dummy>(); local
109 Maybe<Dummy> val; local
112 val = std::move(val2);
  /frameworks/compile/libbcc/lib/
RSIsThreadablePass.cpp 113 llvm::MDString *val = variable
117 node->addOperand(llvm::MDNode::get(context, val));
  /frameworks/compile/mclinker/lib/LD/
Diagnostic.cpp 151 int val = getArgSInt(arg_no); local
152 llvm::raw_string_ostream(pOutStr) << val;
156 unsigned int val = getArgUInt(arg_no); local
157 llvm::raw_string_ostream(pOutStr) << val;
161 unsigned long long val = getArgUInt(arg_no); local
162 llvm::raw_string_ostream(pOutStr) << val;
166 bool val = getArgBool(arg_no); local
167 if (val)
  /frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
PublicFinalWithObservableTestVo.java 31 private int val = R.string.app_name; field in class:PublicFinalWithObservableTestVo.MyVo
34 return val;
37 public void setVal(int val) {
38 this.val = val;
39 notifyPropertyChanged(BR.val);
  /frameworks/native/services/batteryservice/
IBatteryPropertiesRegistrar.cpp 48 status_t getProperty(int id, struct BatteryProperty *val) {
60 val->readFromParcel(&reply);
98 struct BatteryProperty val; local
99 status_t result = getProperty(id, &val);
103 val.writeToParcel(reply);
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
miniopt.h 47 bool good_int; /* 'val' member is the result of a sucessful
57 int val; /* strtol translation of valstr */ member in struct:miniopt

Completed in 814 milliseconds

<<11121314151617181920>>