/external/v8/test/webkit/ |
D | dfg-double-vote-fuzz-expected.txt | 29 Result value is 54939 30 Result value is 55039 31 Result value is 55039 32 Result value is 55139 33 Result value is 55039 34 Result value is 55139 35 Result value is 55139 36 Result value is 55239 37 Result value is 55039 38 Result value is 55139 [all …]
|
D | dfg-create-inlined-arguments-in-closure-inline-expected.txt | 29 PASS value is 5 30 PASS value is 6 31 PASS value is 7 32 PASS value is 8 33 PASS value is 9 34 PASS value is 10 35 PASS value is 11 36 PASS value is 12 37 PASS value is 13 38 PASS value is 14 [all …]
|
/external/elfutils/src/tests/ |
D | run-funcretval.sh | 34 () fun_char: return value location: {0x50, 0} 35 () fun_short: return value location: {0x50, 0} 36 () fun_int: return value location: {0x50, 0} 37 () fun_ptr: return value location: {0x50, 0} 38 () fun_iptr: return value location: {0x50, 0} 39 () fun_long: return value location: {0x50, 0} 40 () fun_int128: return value location: {0x50, 0} {0x93, 0x8} {0x51, 0} {0x93, 0x8} 41 () fun_large_struct1: return value location: {0x70, 0} 42 () fun_large_struct2: return value location: {0x70, 0} 43 () fun_float: return value location: {0x90, 0x40} [all …]
|
/external/protobuf/java/src/main/java/com/google/protobuf/micro/ |
D | CodedOutputStreamMicro.java | 120 public void writeDouble(final int fieldNumber, final double value) in writeDouble() argument 123 writeDoubleNoTag(value); in writeDouble() 127 public void writeFloat(final int fieldNumber, final float value) in writeFloat() argument 130 writeFloatNoTag(value); in writeFloat() 134 public void writeUInt64(final int fieldNumber, final long value) in writeUInt64() argument 137 writeUInt64NoTag(value); in writeUInt64() 141 public void writeInt64(final int fieldNumber, final long value) in writeInt64() argument 144 writeInt64NoTag(value); in writeInt64() 148 public void writeInt32(final int fieldNumber, final int value) in writeInt32() argument 151 writeInt32NoTag(value); in writeInt32() [all …]
|
/external/protobuf/src/google/protobuf/stubs/ |
D | type_traits_unittest.cc | 172 EXPECT_TRUE(is_integral<bool>::value); in TEST() 173 EXPECT_TRUE(is_integral<char>::value); in TEST() 174 EXPECT_TRUE(is_integral<unsigned char>::value); in TEST() 175 EXPECT_TRUE(is_integral<signed char>::value); in TEST() 176 EXPECT_TRUE(is_integral<wchar_t>::value); in TEST() 177 EXPECT_TRUE(is_integral<int>::value); in TEST() 178 EXPECT_TRUE(is_integral<unsigned int>::value); in TEST() 179 EXPECT_TRUE(is_integral<short>::value); in TEST() 180 EXPECT_TRUE(is_integral<unsigned short>::value); in TEST() 181 EXPECT_TRUE(is_integral<long>::value); in TEST() [all …]
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
D | CodedOutputStream.java | 168 public void writeDouble(final int fieldNumber, final double value) in writeDouble() argument 171 writeDoubleNoTag(value); in writeDouble() 175 public void writeFloat(final int fieldNumber, final float value) in writeFloat() argument 178 writeFloatNoTag(value); in writeFloat() 182 public void writeUInt64(final int fieldNumber, final long value) in writeUInt64() argument 185 writeUInt64NoTag(value); in writeUInt64() 189 public void writeInt64(final int fieldNumber, final long value) in writeInt64() argument 192 writeInt64NoTag(value); in writeInt64() 196 public void writeInt32(final int fieldNumber, final int value) in writeInt32() argument 199 writeInt32NoTag(value); in writeInt32() [all …]
|
/external/v8/src/base/ |
D | bits.h | 22 inline uint32_t CountPopulation32(uint32_t value) { in CountPopulation32() argument 24 return __builtin_popcount(value); in CountPopulation32() 26 value = ((value >> 1) & 0x55555555) + (value & 0x55555555); in CountPopulation32() 27 value = ((value >> 2) & 0x33333333) + (value & 0x33333333); in CountPopulation32() 28 value = ((value >> 4) & 0x0f0f0f0f) + (value & 0x0f0f0f0f); in CountPopulation32() 29 value = ((value >> 8) & 0x00ff00ff) + (value & 0x00ff00ff); in CountPopulation32() 30 value = ((value >> 16) & 0x0000ffff) + (value & 0x0000ffff); in CountPopulation32() 31 return value; in CountPopulation32() 38 inline uint32_t CountLeadingZeros32(uint32_t value) { in CountLeadingZeros32() argument 40 return value ? __builtin_clz(value) : 32; in CountLeadingZeros32() [all …]
|
/external/protobuf/java/src/main/java/com/google/protobuf/nano/ |
D | CodedOutputByteBufferNano.java | 91 public void writeDouble(final int fieldNumber, final double value) in writeDouble() argument 94 writeDoubleNoTag(value); in writeDouble() 98 public void writeFloat(final int fieldNumber, final float value) in writeFloat() argument 101 writeFloatNoTag(value); in writeFloat() 105 public void writeUInt64(final int fieldNumber, final long value) in writeUInt64() argument 108 writeUInt64NoTag(value); in writeUInt64() 112 public void writeInt64(final int fieldNumber, final long value) in writeInt64() argument 115 writeInt64NoTag(value); in writeInt64() 119 public void writeInt32(final int fieldNumber, final int value) in writeInt32() argument 122 writeInt32NoTag(value); in writeInt32() [all …]
|
/external/apache-http/src/org/apache/commons/codec/language/ |
D | DoubleMetaphone.java | 78 public String doubleMetaphone(String value) { in doubleMetaphone() argument 79 return doubleMetaphone(value, false); in doubleMetaphone() 90 public String doubleMetaphone(String value, boolean alternate) { in doubleMetaphone() argument 91 value = cleanInput(value); in doubleMetaphone() 92 if (value == null) { in doubleMetaphone() 96 boolean slavoGermanic = isSlavoGermanic(value); in doubleMetaphone() 97 int index = isSilentStart(value) ? 1 : 0; in doubleMetaphone() 101 while (!result.isComplete() && index <= value.length() - 1) { in doubleMetaphone() 102 switch (value.charAt(index)) { in doubleMetaphone() 109 index = handleAEIOUY(value, result, index); in doubleMetaphone() [all …]
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowBundle.java | 44 public void putString(String key, String value) { in putString() argument 45 map.put(key, value); in putString() 50 Object value = map.get(key); in getString() local 51 return value == null || !(value instanceof String) ? null : (String) value; in getString() 59 Object value = map.get(key); in getString() local 60 return value == null || !(value instanceof String) ? defaultValue : (String) value; in getString() 64 public void putLong(String key, long value) { in putLong() argument 65 map.put(key, value); in putLong() 75 Object value = map.get(key); in getLong() local 76 return value == null || !(value instanceof Long) ? defaultValue : (Long) value; in getLong() [all …]
|
/external/boringssl/src/crypto/asn1/ |
D | a_utf8.c | 78 unsigned long value; in UTF8_getc() local 85 value = *p++ & 0x7f; in UTF8_getc() 90 value = (*p++ & 0x1f) << 6; in UTF8_getc() 91 value |= *p++ & 0x3f; in UTF8_getc() 92 if(value < 0x80) return -4; in UTF8_getc() 98 value = (*p++ & 0xf) << 12; in UTF8_getc() 99 value |= (*p++ & 0x3f) << 6; in UTF8_getc() 100 value |= *p++ & 0x3f; in UTF8_getc() 101 if(value < 0x800) return -4; in UTF8_getc() 108 value = ((unsigned long)(*p++ & 0x7)) << 18; in UTF8_getc() [all …]
|
/external/vixl/src/vixl/ |
D | compiler-intrinsics.cc | 32 int CountLeadingSignBitsFallBack(int64_t value, int width) { in CountLeadingSignBitsFallBack() argument 34 if (value >= 0) { in CountLeadingSignBitsFallBack() 35 return CountLeadingZeros(value, width) - 1; in CountLeadingSignBitsFallBack() 37 return CountLeadingZeros(~value, width) - 1; in CountLeadingSignBitsFallBack() 42 int CountLeadingZerosFallBack(uint64_t value, int width) { in CountLeadingZerosFallBack() argument 44 if (value == 0) { in CountLeadingZerosFallBack() 48 value = value << (64 - width); in CountLeadingZerosFallBack() 49 if ((value & UINT64_C(0xffffffff00000000)) == 0) { in CountLeadingZerosFallBack() 51 value = value << 32; in CountLeadingZerosFallBack() 53 if ((value & UINT64_C(0xffff000000000000)) == 0) { in CountLeadingZerosFallBack() [all …]
|
/external/skia/src/sfnt/ |
D | SkOTTable_OS_2_V4.h | 37 SK_OT_USHORT value; 51 (value)SK_SEQ_END) 78 static const SK_OT_USHORT RestrictedMask = SkOTSetUSHORTBit<1>::value; 79 static const SK_OT_USHORT PreviewPrintMask = SkOTSetUSHORTBit<2>::value; 80 static const SK_OT_USHORT EditableMask = SkOTSetUSHORTBit<3>::value; 81 static const SK_OT_USHORT NoSubsettingMask = SkOTSetUSHORTBit<8>::value; 82 static const SK_OT_USHORT BitmapMask = SkOTSetUSHORTBit<9>::value; 83 SK_OT_USHORT value; member 266 static const SK_OT_ULONG BasicLatinMask = SkOTSetULONGBit<0>::value; 267 static const SK_OT_ULONG Latin1SupplementMask = SkOTSetULONGBit<1>::value; [all …]
|
D | SkOTTable_OS_2_V3.h | 37 SK_OT_USHORT value; 51 (value)SK_SEQ_END) 78 static const SK_OT_USHORT RestrictedMask = SkOTSetUSHORTBit<1>::value; 79 static const SK_OT_USHORT PreviewPrintMask = SkOTSetUSHORTBit<2>::value; 80 static const SK_OT_USHORT EditableMask = SkOTSetUSHORTBit<3>::value; 81 static const SK_OT_USHORT NoSubsettingMask = SkOTSetUSHORTBit<8>::value; 82 static const SK_OT_USHORT BitmapMask = SkOTSetUSHORTBit<9>::value; 83 SK_OT_USHORT value; member 266 static const SK_OT_ULONG BasicLatinMask = SkOTSetULONGBit<0>::value; 267 static const SK_OT_ULONG Latin1SupplementMask = SkOTSetULONGBit<1>::value; [all …]
|
D | SkOTTable_OS_2_V2.h | 37 SK_OT_USHORT value; 50 (value)SK_SEQ_END) 77 static const SK_OT_USHORT RestrictedMask = SkOTSetUSHORTBit<1>::value; 78 static const SK_OT_USHORT PreviewPrintMask = SkOTSetUSHORTBit<2>::value; 79 static const SK_OT_USHORT EditableMask = SkOTSetUSHORTBit<3>::value; 80 static const SK_OT_USHORT NoSubsettingMask = SkOTSetUSHORTBit<8>::value; 81 static const SK_OT_USHORT BitmapMask = SkOTSetUSHORTBit<9>::value; 82 SK_OT_USHORT value; member 265 static const SK_OT_ULONG BasicLatinMask = SkOTSetULONGBit<0>::value; 266 static const SK_OT_ULONG Latin1SupplementMask = SkOTSetULONGBit<1>::value; [all …]
|
D | SkOTTable_OS_2_V1.h | 37 SK_OT_USHORT value; 51 (value)SK_SEQ_END) 78 static const SK_OT_USHORT RestrictedMask = SkOTSetUSHORTBit<1>::value; 79 static const SK_OT_USHORT PreviewPrintMask = SkOTSetUSHORTBit<2>::value; 80 static const SK_OT_USHORT EditableMask = SkOTSetUSHORTBit<3>::value; 81 SK_OT_USHORT value; member 264 static const SK_OT_ULONG BasicLatinMask = SkOTSetULONGBit<0>::value; 265 static const SK_OT_ULONG Latin1SupplementMask = SkOTSetULONGBit<1>::value; 266 static const SK_OT_ULONG LatinExtendedAMask = SkOTSetULONGBit<2>::value; 267 static const SK_OT_ULONG LatinExtendedBMask = SkOTSetULONGBit<3>::value; [all …]
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/ |
D | DexDataWriter.java | 90 public void writeLong(long value) throws IOException { in writeLong() argument 91 writeInt((int)value); in writeLong() 92 writeInt((int)(value >> 32)); in writeLong() 95 public static void writeInt(OutputStream out, int value) throws IOException { in writeInt() argument 96 out.write(value); in writeInt() 97 out.write(value >> 8); in writeInt() 98 out.write(value >> 16); in writeInt() 99 out.write(value >> 24); in writeInt() 102 public void writeInt(int value) throws IOException { in writeInt() argument 103 writeInt(this, value); in writeInt() [all …]
|
/external/clang/test/SemaTemplate/ |
D | temp_class_spec.cpp | 4 static const bool value = false; member 9 static const bool value = true; member 14 static const bool value = true; member 17 int array0[is_pointer<int>::value? -1 : 1]; 18 int array1[is_pointer<int*>::value? 1 : -1]; 19 int array2[is_pointer<const int*>::value? 1 : -1]; 23 static const bool value = false; member 28 static const bool value = true; member 31 int lvalue_ref0[is_lvalue_reference<int>::value? -1 : 1]; 32 int lvalue_ref1[is_lvalue_reference<const int&>::value? 1 : -1]; [all …]
|
/external/deqp/framework/opengl/ |
D | gluStrUtilPrototypes.inl | 6 const char* getErrorName (int value); 7 const char* getTypeName (int value); 8 const char* getParamQueryName (int value); 9 const char* getProgramParamName (int value); 10 const char* getUniformParamName (int value); 11 const char* getFramebufferAttachmentName (int value); 12 const char* getFramebufferAttachmentParameterName (int value); 13 const char* getFramebufferTargetName (int value); 14 const char* getFramebufferStatusName (int value); 15 const char* getFramebufferAttachmentTypeName (int value); [all …]
|
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/ |
D | BinaryOutputCapsule.java | 72 public void write(byte value, String name, byte defVal) throws IOException { in write() argument 73 if (value == defVal) in write() 76 write(value); in write() 79 public void write(byte[] value, String name, byte[] defVal) in write() argument 81 if (value == defVal) in write() 84 write(value); in write() 87 public void write(byte[][] value, String name, byte[][] defVal) in write() argument 89 if (value == defVal) in write() 92 write(value); in write() 95 public void write(int value, String name, int defVal) throws IOException { in write() argument [all …]
|
/external/valgrind/none/tests/ |
D | unit_debuglog.c | 51 double value; in main() local 54 value = 0.0; in main() 55 run("|%f|", value); in main() 56 run("|%2f|", value); in main() 57 run("|%9f|", value); in main() 58 run("|%8.0f|", value); in main() 59 run("|%8.1f|", value); in main() 60 run("|%8.2f|", value); in main() 64 value = 3.7; in main() 65 run("|%f|", value); in main() [all …]
|
/external/libcxx/test/std/depr/depr.c.headers/ |
D | math_h.pass.cpp | 22 static_assert((std::is_same<decltype(acos((double)0)), double>::value), ""); in test_acos() 23 static_assert((std::is_same<decltype(acosf(0)), float>::value), ""); in test_acos() 24 static_assert((std::is_same<decltype(acosl(0)), long double>::value), ""); in test_acos() 30 static_assert((std::is_same<decltype(asin((double)0)), double>::value), ""); in test_asin() 31 static_assert((std::is_same<decltype(asinf(0)), float>::value), ""); in test_asin() 32 static_assert((std::is_same<decltype(asinl(0)), long double>::value), ""); in test_asin() 38 static_assert((std::is_same<decltype(atan((double)0)), double>::value), ""); in test_atan() 39 static_assert((std::is_same<decltype(atanf(0)), float>::value), ""); in test_atan() 40 static_assert((std::is_same<decltype(atanl(0)), long double>::value), ""); in test_atan() 46 static_assert((std::is_same<decltype(atan2((double)0, (double)0)), double>::value), ""); in test_atan2() [all …]
|
/external/libcxx/test/std/numerics/c.math/ |
D | cmath.pass.cpp | 105 static_assert((std::is_same<decltype(std::abs((float)0)), float>::value), ""); in test_abs() 106 static_assert((std::is_same<decltype(std::abs((double)0)), double>::value), ""); in test_abs() 107 static_assert((std::is_same<decltype(std::abs((long double)0)), long double>::value), ""); in test_abs() 108 static_assert((std::is_same<decltype(abs(Ambiguous())), Ambiguous>::value), ""); in test_abs() 114 static_assert((std::is_same<decltype(std::acos((float)0)), float>::value), ""); in test_acos() 115 static_assert((std::is_same<decltype(std::acos((bool)0)), double>::value), ""); in test_acos() 116 static_assert((std::is_same<decltype(std::acos((unsigned short)0)), double>::value), ""); in test_acos() 117 static_assert((std::is_same<decltype(std::acos((int)0)), double>::value), ""); in test_acos() 118 static_assert((std::is_same<decltype(std::acos((unsigned int)0)), double>::value), ""); in test_acos() 119 static_assert((std::is_same<decltype(std::acos((long)0)), double>::value), ""); in test_acos() [all …]
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_format_yuv.c | 50 uint32_t value; in util_format_r8g8_b8g8_unorm_unpack_rgba_float() local 54 value = *src++; in util_format_r8g8_b8g8_unorm_unpack_rgba_float() 57 value = util_bswap32(value); in util_format_r8g8_b8g8_unorm_unpack_rgba_float() 60 r = ubyte_to_float((value >> 0) & 0xff); in util_format_r8g8_b8g8_unorm_unpack_rgba_float() 61 g0 = ubyte_to_float((value >> 8) & 0xff); in util_format_r8g8_b8g8_unorm_unpack_rgba_float() 62 b = ubyte_to_float((value >> 16) & 0xff); in util_format_r8g8_b8g8_unorm_unpack_rgba_float() 63 g1 = ubyte_to_float((value >> 24) & 0xff); in util_format_r8g8_b8g8_unorm_unpack_rgba_float() 79 value = *src; in util_format_r8g8_b8g8_unorm_unpack_rgba_float() 82 value = util_bswap32(value); in util_format_r8g8_b8g8_unorm_unpack_rgba_float() 85 r = ubyte_to_float((value >> 0) & 0xff); in util_format_r8g8_b8g8_unorm_unpack_rgba_float() [all …]
|
/external/nanopb-c/generator/google/protobuf/internal/ |
D | encoder.py | 79 def _VarintSize(value): argument 81 if value <= 0x7f: return 1 82 if value <= 0x3fff: return 2 83 if value <= 0x1fffff: return 3 84 if value <= 0xfffffff: return 4 85 if value <= 0x7ffffffff: return 5 86 if value <= 0x3ffffffffff: return 6 87 if value <= 0x1ffffffffffff: return 7 88 if value <= 0xffffffffffffff: return 8 89 if value <= 0x7fffffffffffffff: return 9 [all …]
|