/third_party/protobuf/src/google/protobuf/ |
H A D | map.h | 191 typename std::conditional<std::is_scalar<T>::value, T, 372 // the same non-null value iff they are sharing a tree. (An alternative 421 // The value is a void* pointing to Node. We use void* instead of Node* to 445 // When node_ is set to a non-null value, all the other non-const fields 616 // Insert the key into the map, if not present. In that case, the value will 617 // be value initialized. 943 // We xor the hash value against the random seed so that we effectively in BucketNumber() 948 // the hash value. The constant kPhi (suggested by Knuth) is roughly in BucketNumber() 996 // Return a randomish value. 1179 std::pair<iterator, bool> insert(const value_type& value) { in insert() argument [all...] |
/third_party/python/Mac/BuildScript/ |
H A D | build-installer.py | 66 def shellQuote(value): 68 Return the string value in a form that can safely be inserted into 71 return "'%s'"%(value.replace("'", "'\"'\"'")) 75 Return the unquoted value of a variable from a file.. 82 value = ln[len(variable):].strip() 83 return value.strip("\"'") 1180 # the existing RUNSHARED configuration value when we call 1191 # Look for environment value BUILDINSTALLER_BUILDPYTHON_MAKE_EXTRAS 1192 # and, if defined, append its value to the make command. This allows
|
/third_party/python/Lib/test/ |
H A D | test_signal.py | 69 value = getattr(signal, name) 70 if inspect.isroutine(value) and not inspect.isbuiltin(value): 71 self.assertEqual(value.__module__, 'signal') 149 # via a signal. POSIX shells do more than look at the 8 bit value. 743 # a true value for the second argument, when that signal arrives, it 750 # a false value for the second argument, when that signal arrives, it 1258 # 1e-6 is the minimum non-zero value for `setitimer()`.
|
/third_party/python/Modules/ |
H A D | _csv.c | 227 int value; in _set_int() local 233 value = _PyLong_AsInt(src); in _set_int() 234 if (value == -1 && PyErr_Occurred()) { in _set_int() 237 *target = value; in _set_int() 335 PyErr_Format(PyExc_TypeError, "bad \"quoting\" value"); in dialect_check_quoting()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
H A D | inlined_vector.h | 333 } else if (IsMemcpyOk::value) { in ~Storage() 466 assert(IsMemcpyOk::value || other_storage.GetIsAllocated()); in MemcpyFrom() 531 if (IsMemcpyOk::value) { in InitFrom() 532 MemcpyIfAllowed<IsMemcpyOk::value>(dst, src, sizeof(dst[0]) * n); in InitFrom()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
H A D | cord.h | 135 absl::enable_if_t<std::is_same<T, std::string>::value, int>; 351 // const reference instead of by value. 379 // TODO(jgm): Benchmark to see if there's a more optimal value than 47 for 514 // const reference instead of by value. 665 // Create a Cord with the contents of StringConstant<T>::value. 741 // Sets the tree value for this instance. `rep` must not be null. 745 // the CordzInfo instance is updated to reference the new `rep` value. 749 // which case the current instance is reset to an empty value. 752 // Sets the tree value for this instance, and randomly samples this cord. 755 // value t [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/str_format/ |
H A D | convert_test.cc | 413 !std::is_signed<T>::value && is_signed_conv; in TYPED_TEST_P() 804 // This value has to be small enough that it won't fit in the uint128 in TEST_F() 1087 // This value is not representable in double, but it in TEST_F() 1090 // value mistakenly through a double. in TEST_F() 1186 bool FormatFails(const char* test_format, T value) { in FormatFails() argument 1191 const FormatArgImpl args[] = {FormatArgImpl(value), FormatArgImpl(one)}; in FormatFails() 1193 << "format=" << test_format << " value=" << value; in FormatFails() local
|
/third_party/skia/include/private/ |
H A D | SkNx.h | 158 // The N -> N/2 recursion bottoms out at N == 1, a scalar value. 252 static_assert(std::is_unsigned<T>::value, ""); in saturatedAdd() 258 static_assert(std::is_unsigned<T>::value, ""); in mulHi() 285 static_assert(std::is_pod<T >::value && in FromBits() 286 std::is_pod<Bits>::value && in FromBits()
|
/third_party/skia/include/core/ |
H A D | SkCanvas.h | 217 @param behavior specializes this constructor; value is unused 579 Call restoreToCount() with returned value to restore this and subsequent saves. 603 Call restoreToCount() with returned value to restore this and subsequent saves. 627 Call restoreToCount() with returned value to restore this and subsequent saves. 734 Call restoreToCount() with returned value to restore this and subsequent saves. 831 @param px x-axis value of the point to rotate about 832 @param py y-axis value of the point to rotate about 838 /** Skews SkMatrix by sx on the x-axis and sy on the y-axis. A positive value of sx 839 skews the drawing right as y-axis values increase; a positive value of sy skews 868 * about the ctm or clip, but does "name" this matrix value, s 2143 drawAnnotation(const SkRect& rect, const char key[], const sk_sp<SkData>& value) drawAnnotation() argument [all...] |
/third_party/selinux/libselinux/src/ |
H A D | label_file.c | 745 rec->spec_file[i] = strdup(opts[n].value); in init() 790 path = opts[n].value; in init() 793 prefix = opts[n].value; in init() 796 baseonly = !!opts[n].value; in init()
|
/third_party/spirv-tools/test/ |
H A D | enum_set_test.cpp | 306 for (auto value : shuffledValues) { in createSetUnorderedInsertion() 307 set.insert(value); in createSetUnorderedInsertion() 524 for (auto value : set) { in TEST() 525 ASSERT_THAT(value, Eq(orderedValues[index])); in TEST()
|
H A D | operand_capabilities_test.cpp | 58 uint32_t value; member 65 << unsigned(ecc.type) << "), " << ecc.value << ", " in operator <<() 82 std::get<1>(GetParam()).value, &entry)); in TEST_P() 88 << " enum value " << std::get<1>(GetParam()).value; in TEST_P()
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fAtomicCounterTests.cpp | 526 tcu::ScopedLogSection counterSection (log, "Counter info", "Show initial value, current value and expected value of each counter."); in checkAndLogCounterValues() 532 const deUint32 value = counters[counterNdx]; in checkAndLogCounterValues() local 548 log << TestLog::Message << "atomic_uint counter" << counterNdx << " initial value: " << initialValue << ", value: " << value << ", expected: " << expectedValue << (value == expectedValue ? "" : ", failed!") << TestLog::EndMessage; in checkAndLogCounterValues() 550 if (value != expectedValue) in checkAndLogCounterValues() 765 // If can increment and incrementation would move us away from result value, incremen in checkPath() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/robustness/ |
H A D | vktRobustnessBufferAccessTests.cpp | 1207 // Verifies if the buffer has the value initialized by BufferAccessInstance::populateReadBuffer at a given offset. 1221 const deInt32 value = -deInt32(valueIndex); in isExpectedValueFromInBuffer() 1222 return !deMemCmp(valuePtr, &value, (size_t)valueSize); in isExpectedValueFromInBuffer() 1226 const float value = float(valueIndex); in isExpectedValueFromInBuffer() 1227 return !deMemCmp(valuePtr, &value, (size_t)valueSize); in isExpectedValueFromInBuffer() 1296 return tcu::TestStatus::fail("Invalid value(s) found"); 1322 logMsg << "\nValue " << valueNdx++ << " has been modified with an unknown value: " << *((deUint32 *)outValuePtr); 1381 // The value is partially out of bounds 1429 // or the maximum representable positive integer value (if the format is integer-based). 1451 logMsg << "expected value withi [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/synchronization/ |
H A D | vktSynchronizationUtil.cpp | 544 m_timelineSemaphoreValues.push_back(pWaitSemaphoreInfos[i].value); 553 m_timelineSemaphoreValues.push_back(pSignalSemaphoreInfos[i].value); 1106 VkSemaphoreSubmitInfo makeCommonSemaphoreSubmitInfo(VkSemaphore semaphore, deUint64 value, VkPipelineStageFlags2 stageMask) in makeCommonSemaphoreSubmitInfo() argument 1117 value, // deUint64 value in makeCommonSemaphoreSubmitInfo()
|
/third_party/vk-gl-cts/framework/randomshaders/ |
H A D | rsgBinaryOps.cpp | 35 // This error happened when two floats with the same value were compared 389 // Initialize storage for value ranges in BinaryVecOp() 395 // Compute range for b that satisfies requested value range in BinaryVecOp() 405 a.getMin() = dst.getMin().value(); in BinaryVecOp() 406 b.getMin() = dst.getMin().value(); in BinaryVecOp() 407 a.getMax() = dst.getMax().value(); in BinaryVecOp() 408 b.getMax() = dst.getMax().value(); in BinaryVecOp() 474 // Quantize scaled value range if possible in operator ()() 666 // Initialize storage for input value ranges in RelationalOp() 670 // Compute range for b that satisfies requested value rang in RelationalOp() [all...] |
/third_party/vk-gl-cts/modules/gles2/scripts/ |
H A D | genutil.py | 89 for (key, value) in params.items(): 95 if value is not None: 96 repl = "\n".join(["%s%s" % (ws, line) for line in value.split("\n")]) 101 s = s.replace("${{%s}}" % key, value) 131 # Random value generation.
|
/third_party/ffmpeg/libavformat/ |
H A D | rmdec.c | 366 av_log(s, AV_LOG_WARNING, "Unsupported Name value property version\n"); in ff_rm_read_mdpr_codecdata() 1180 unsigned tag, type, len, tlen, value; in ivr_read_header() local 1242 nb_streams = value = avio_rb32(pb); in ivr_read_header() 1244 value = avio_rb32(pb); in ivr_read_header() 1245 av_log(s, AV_LOG_DEBUG, "%s = %d\n", key, value); in ivr_read_header() 1300 value = avio_rb32(pb); in ivr_read_header() 1301 av_log(s, AV_LOG_DEBUG, "%s = %d\n", key, value); in ivr_read_header()
|
H A D | wtvdec.c | 388 static int filetime_to_iso8601(char *buf, int buf_size, int64_t value) in filetime_to_iso8601() argument 390 time_t t = (value / 10000000LL) - 11644473600LL; in filetime_to_iso8601() 404 static int crazytime_to_iso8601(char *buf, int buf_size, int64_t value) in crazytime_to_iso8601() argument 406 time_t t = (value / 10000000LL) - 719162LL*86400LL; in crazytime_to_iso8601() 420 static int oledate_to_iso8601(char *buf, int buf_size, int64_t value) in oledate_to_iso8601() argument 422 time_t t = (av_int2double(value) - 25569.0) * 86400; in oledate_to_iso8601()
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_paletteuse.c | 601 uint32_t value; member 617 return (int)(a->value >> (8 * (3 - (pos))) & 0xff) \ 618 - (int)(b->value >> (8 * (3 - (pos))) & 0xff); \ 670 tmp_pal[nb_color].value = c; in get_next_color() 1066 #define DEFINE_SET_FRAME(color_search, name, value) \ 1070 return set_frame(s, out, in, x_start, y_start, w, h, value, color_search); \
|
/third_party/icu/tools/unicodetools/com/ibm/rbm/ |
H A D | RBReporter.java | 363 int value = Integer.parseInt(valueCombo.getSelectedItem().toString()); in generateNextReportDate() 364 if (unitCombo.getSelectedIndex() == 0) now.add(Calendar.MINUTE, value); in generateNextReportDate() 365 else if (unitCombo.getSelectedIndex() == 1) now.add(Calendar.HOUR, value); in generateNextReportDate() 366 else if (unitCombo.getSelectedIndex() == 2) now.add(Calendar.DATE, value); in generateNextReportDate() 733 private static void selectComboValue(JComboBox box, String value) { in selectComboValue() argument 735 if (box.getItemAt(i).toString().equals(value)) { in selectComboValue()
|
/third_party/libuv/include/ |
H A D | uv.h | 84 XX(EAI_BADFLAGS, "bad ai_flags value") \ 85 XX(EAI_BADHINTS, "invalid value for hints") \ 134 XX(EOVERFLOW, "value too large for defined data type") \ 519 UV_EXTERN int uv_send_buffer_size(uv_handle_t* handle, int* value); 520 UV_EXTERN int uv_recv_buffer_size(uv_handle_t* handle, int* value); 1359 char* value; member 1365 UV_EXTERN int uv_os_setenv(const char* name, const char* value); 1854 UV_EXTERN int uv_sem_init(uv_sem_t* sem, unsigned int value); 1879 UV_EXTERN void uv_key_set(uv_key_t* key, void* value);
|
/third_party/libuv/include/uv_ndk/ |
H A D | uv.h | 81 XX(EAI_BADFLAGS, "bad ai_flags value") \ 82 XX(EAI_BADHINTS, "invalid value for hints") \ 131 XX(EOVERFLOW, "value too large for defined data type") \ 473 UV_EXTERN int uv_send_buffer_size(uv_handle_t* handle, int* value); 474 UV_EXTERN int uv_recv_buffer_size(uv_handle_t* handle, int* value); 1241 char* value; member 1247 UV_EXTERN int uv_os_setenv(const char* name, const char* value); 1716 UV_EXTERN int uv_sem_init(uv_sem_t* sem, unsigned int value); 1741 UV_EXTERN void uv_key_set(uv_key_t* key, void* value);
|
/third_party/mesa3d/src/compiler/glsl/ |
H A D | builtin_variables.cpp | 500 ir_variable *add_const(const char *name, int precision, int value); 501 ir_variable *add_const(const char *name, int value) in add_const() argument 503 return add_const(name, GLSL_PRECISION_MEDIUM, value); in add_const() 697 int value) in add_const() 701 var->constant_value = new(var) ir_constant(value); in add_const() 702 var->constant_initializer = new(var) ir_constant(value); in add_const() 696 add_const(const char *name, int precision, int value) add_const() argument
|
/third_party/node/deps/openssl/config/archs/linux-armv4/no-asm/include/openssl/ |
H A D | asn1.h | 158 # define ASN1_STRING_FLAG_BITS_LEFT 0x08/* Set if 0x07 has bits left value */ 160 * This indicates that the ASN1_STRING is not a real value but just a place 188 * The value of the following field depends on the type being held. It 190 * non-zero 'unused bits' value, it will be handled correctly 214 * STABLE_FLAGS_MALLOC only we can clear the existing value. Use the alias 548 } value; member 624 void ASN1_TYPE_set(ASN1_TYPE *a, int type, void *value); 625 int ASN1_TYPE_set1(ASN1_TYPE *a, int type, const void *value); 686 int ASN1_BIT_STRING_set_bit(ASN1_BIT_STRING *a, int n, int value); 694 int ASN1_BIT_STRING_set_asc(ASN1_BIT_STRING *bs, const char *name, int value, [all...] |