/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/ |
D | GenericVisitorAdapter.java | 44 R result; in visit() local 46 result = n.getMembers().accept(this, arg); in visit() 47 if (result != null) in visit() 48 return result; in visit() 51 result = n.getModifiers().accept(this, arg); in visit() 52 if (result != null) in visit() 53 return result; in visit() 56 result = n.getName().accept(this, arg); in visit() 57 if (result != null) in visit() 58 return result; in visit() [all …]
|
/external/ms-tpm-20-ref/TPMCmd/tpm/include/ |
D | HandleProcess.h | 63 result = TPMI_DH_OBJECT_Unmarshal(&handles[0], handleBufferStart, 65 if(TPM_RC_SUCCESS != result) return result + TPM_RC_H + TPM_RC_1; 66 result = TPMI_DH_ENTITY_Unmarshal(&handles[1], handleBufferStart, 68 if(TPM_RC_SUCCESS != result) return result + TPM_RC_H + TPM_RC_2; 74 result = TPMI_SH_POLICY_Unmarshal(&handles[0], handleBufferStart, 76 if(TPM_RC_SUCCESS != result) return result + TPM_RC_H + TPM_RC_1; 82 result = TPMI_DH_OBJECT_Unmarshal(&handles[0], handleBufferStart, 84 if(TPM_RC_SUCCESS != result) return result + TPM_RC_H + TPM_RC_1; 90 result = TPMI_DH_OBJECT_Unmarshal(&handles[0], handleBufferStart, 92 if(TPM_RC_SUCCESS != result) return result + TPM_RC_H + TPM_RC_1; [all …]
|
/external/antlr/runtime/Ruby/test/functional/ast-output/ |
D | rewrites.rb | 23 result = '' 26 result += r.result if r.respond_to?( :result ) 27 result += r.tree.inspect if r.tree 29 return( expect_errors ? [ result, parser.reported_errors ] : result ) 60 result = parse( <<-'END', :a, 'abc 34' ) 68 result.should == '' 73 result = parse( <<-'END', :a, 'abc' ) 82 result.should == 'abc' 87 result = parse( <<-'END', :a, 'abc' ) 96 result.should == 'x' [all …]
|
D | auto-ast.rb | 23 result = '' 26 result += r.result if r.respond_to?( :result ) 27 result += r.tree.inspect if r.tree 29 return( expect_errors ? [ result, parser.reported_errors ] : result ) 61 result = parse( <<-'END', :a, 'abc 34' ) 69 result.should == 'abc 34' 73 result = parse( <<-'END', :a, 'abc 34' ) 81 result.should == 'abc 34' 85 result = parse( <<-'END', :a, 'abc 34' ) 93 result.should == '(abc 34)' [all …]
|
D | tree-rewrite.rb | 1009 result = parser.a 1010 nodes = ANTLR3::AST::CommonTreeNodeStream.new( result.tree ) 1013 result = walker.a 1014 stree = result.tree.nil? ? '' : result.tree.inspect 1023 result = parser.a 1024 nodes = ANTLR3::AST::CommonTreeNodeStream.new( result.tree ) 1027 result = walker.a 1028 stree = result.tree.nil? ? '' : result.tree.inspect 1037 result = parser.a 1038 nodes = ANTLR3::AST::CommonTreeNodeStream.new( result.tree ) [all …]
|
/external/tensorflow/tensorflow/core/platform/ |
D | numbers_test.cc | 121 int32 result; in TEST() local 123 EXPECT_EQ(true, safe_strto32("1", &result)); in TEST() 124 EXPECT_EQ(1, result); in TEST() 125 EXPECT_EQ(true, safe_strto32("123", &result)); in TEST() 126 EXPECT_EQ(123, result); in TEST() 127 EXPECT_EQ(true, safe_strto32(" -123 ", &result)); in TEST() 128 EXPECT_EQ(-123, result); in TEST() 129 EXPECT_EQ(true, safe_strto32("2147483647", &result)); in TEST() 130 EXPECT_EQ(2147483647, result); in TEST() 131 EXPECT_EQ(true, safe_strto32("-2147483648", &result)); in TEST() [all …]
|
/external/boringssl/src/crypto/fipsmodule/bn/ |
D | rsaz_exp.c | 45 BN_ULONG *a_inv, *m, *result, *table_s = storage + 40 * 3, *R2 = table_s; in RSAZ_1024_mod_exp_avx2() local 48 result = storage; in RSAZ_1024_mod_exp_avx2() 53 result = storage + 40; in RSAZ_1024_mod_exp_avx2() 69 rsaz_1024_mul_avx2(result, R2, one, m, k0); in RSAZ_1024_mod_exp_avx2() 73 rsaz_1024_scatter5_avx2(table_s, result, 0); in RSAZ_1024_mod_exp_avx2() 77 rsaz_1024_sqr_avx2(result, a_inv, m, k0, 1); in RSAZ_1024_mod_exp_avx2() 78 rsaz_1024_scatter5_avx2(table_s, result, 2); in RSAZ_1024_mod_exp_avx2() 82 rsaz_1024_mul_avx2(result, result, a_inv, m, k0); in RSAZ_1024_mod_exp_avx2() 83 rsaz_1024_scatter5_avx2(table_s, result, index); in RSAZ_1024_mod_exp_avx2() 87 rsaz_1024_sqr_avx2(result, result, m, k0, 1); in RSAZ_1024_mod_exp_avx2() [all …]
|
/external/rust/crates/quiche/deps/boringssl/src/crypto/fipsmodule/bn/ |
D | rsaz_exp.c | 45 BN_ULONG *a_inv, *m, *result, *table_s = storage + 40 * 3, *R2 = table_s; in RSAZ_1024_mod_exp_avx2() local 48 result = storage; in RSAZ_1024_mod_exp_avx2() 53 result = storage + 40; in RSAZ_1024_mod_exp_avx2() 69 rsaz_1024_mul_avx2(result, R2, one, m, k0); in RSAZ_1024_mod_exp_avx2() 73 rsaz_1024_scatter5_avx2(table_s, result, 0); in RSAZ_1024_mod_exp_avx2() 77 rsaz_1024_sqr_avx2(result, a_inv, m, k0, 1); in RSAZ_1024_mod_exp_avx2() 78 rsaz_1024_scatter5_avx2(table_s, result, 2); in RSAZ_1024_mod_exp_avx2() 82 rsaz_1024_mul_avx2(result, result, a_inv, m, k0); in RSAZ_1024_mod_exp_avx2() 83 rsaz_1024_scatter5_avx2(table_s, result, index); in RSAZ_1024_mod_exp_avx2() 87 rsaz_1024_sqr_avx2(result, result, m, k0, 1); in RSAZ_1024_mod_exp_avx2() [all …]
|
/external/angle/util/ |
D | geometry_utils.cpp | 25 void CreateSphereGeometry(size_t sliceCount, float radius, SphereGeometry *result) in CreateSphereGeometry() argument 32 result->positions.resize(vertexCount); in CreateSphereGeometry() 33 result->normals.resize(vertexCount); in CreateSphereGeometry() 42 result->positions[vertexIdx] = direction * radius; in CreateSphereGeometry() 43 result->normals[vertexIdx] = direction; in CreateSphereGeometry() 47 result->indices.clear(); in CreateSphereGeometry() 48 result->indices.reserve(indexCount); in CreateSphereGeometry() 53 result->indices.push_back(static_cast<unsigned short>(i * (sliceCount + 1) + j)); in CreateSphereGeometry() 54 result->indices.push_back(static_cast<unsigned short>((i + 1) * (sliceCount + 1) + j)); in CreateSphereGeometry() 55 result->indices.push_back( in CreateSphereGeometry() [all …]
|
/external/skqp/src/sksl/ |
D | SkSLUtil.h | 222 sk_sp<GrShaderCaps> result = sk_make_sp<GrShaderCaps>(GrContextOptions()); in Default() local 223 result->fVersionDeclString = "#version 400"; in Default() 224 result->fShaderDerivativeSupport = true; in Default() 225 return result; in Default() 229 sk_sp<GrShaderCaps> result = sk_make_sp<GrShaderCaps>(GrContextOptions()); in Version450Core() local 230 result->fVersionDeclString = "#version 450 core"; in Version450Core() 231 return result; in Version450Core() 235 sk_sp<GrShaderCaps> result = sk_make_sp<GrShaderCaps>(GrContextOptions()); in Version110() local 236 result->fVersionDeclString = "#version 110"; in Version110() 237 result->fGLSLGeneration = GrGLSLGeneration::k110_GrGLSLGeneration; in Version110() [all …]
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/visitor/ |
D | GenericVisitorAdapter.java | 47 R result = a.accept(this, arg); in visit() local 48 if (result != null) { in visit() 49 return result; in visit() 57 R result = member.accept(this, arg); in visit() local 58 if (result != null) { in visit() 59 return result; in visit() 73 R result = a.accept(this, arg); in visit() local 74 if (result != null) { in visit() 75 return result; in visit() 81 R result = n.getType().accept(this, arg); in visit() local [all …]
|
/external/skia/src/sksl/ |
D | SkSLUtil.h | 302 ShaderCapsPointer result = MakeShaderCaps(); in Default() local 303 result->fVersionDeclString = "#version 400"; in Default() 304 result->fShaderDerivativeSupport = true; in Default() 305 result->fBuiltinDeterminantSupport = true; in Default() 306 result->fCanUseDoLoops = true; in Default() 307 return result; in Default() 315 ShaderCapsPointer result = MakeShaderCaps(); in AddAndTrueToLoopCondition() local 316 result->fVersionDeclString = "#version 400"; in AddAndTrueToLoopCondition() 317 result->fAddAndTrueToLoopCondition = true; in AddAndTrueToLoopCondition() 318 return result; in AddAndTrueToLoopCondition() [all …]
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/visitor/ |
D | GenericVisitorAdapter.java | 82 R result = n.getJavaDoc().accept(this, arg); in visit() local 83 if (result != null) { in visit() 84 return result; in visit() 91 R result = a.accept(this, arg); in visit() local 92 if (result != null) { in visit() 93 return result; in visit() 101 R result = member.accept(this, arg); in visit() local 102 if (result != null) { in visit() 103 return result; in visit() 115 R result = n.getJavaDoc().accept(this, arg); in visit() local [all …]
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/strftime/ |
D | 1-1.c | 27 int result; in main() local 35 result = strftime(text, sizeof(text), "%a", local_t); in main() 36 printf("a Bytes %i %s ", result, text); in main() 37 if (result != 3) { in main() 44 result = strftime(text, sizeof(text), "%A", local_t); in main() 45 printf("A Bytes %i %s ", result, text); in main() 46 if (result <= 5) { in main() 53 result = strftime(text, sizeof(text), "%b", local_t); in main() 54 printf("b Bytes %i %s ", result, text); in main() 55 if (result != 3) { in main() [all …]
|
/external/pdfium/core/fxcrt/ |
D | fx_string_unittest.cpp | 240 std::vector<ByteString> result; in TEST() local 241 result = fxcrt::Split(ByteString(""), ','); in TEST() 242 ASSERT_EQ(1u, result.size()); in TEST() 243 EXPECT_EQ("", result[0]); in TEST() 245 result = fxcrt::Split(ByteString("a"), ','); in TEST() 246 ASSERT_EQ(1u, result.size()); in TEST() 247 EXPECT_EQ("a", result[0]); in TEST() 249 result = fxcrt::Split(ByteString(","), ','); in TEST() 250 ASSERT_EQ(2u, result.size()); in TEST() 251 EXPECT_EQ("", result[0]); in TEST() [all …]
|
/external/elfutils/libdw/ |
D | dwarf_begin_elf.c | 74 check_section (Dwarf *result, size_t shstrndx, Elf_Scn *scn, bool inscngrp) in check_section() argument 90 return result; in check_section() 99 return result; in check_section() 104 const char *scnname = elf_strptr (result->elf, shstrndx, in check_section() 111 Dwarf_Sig8_Hash_free (&result->sig8_hash); in check_section() 113 free (result); in check_section() 148 return result; in check_section() 150 if (unlikely (result->sectiondata[cnt] != NULL)) in check_section() 152 return result; in check_section() 166 return result; in check_section() [all …]
|
/external/mesa3d/src/mesa/program/ |
D | prog_execute.c | 188 const struct gl_program_machine *machine, GLfloat result[4]) in fetch_vector4() 194 COPY_4V(result, src); in fetch_vector4() 201 result[0] = src[GET_SWZ(source->Swizzle, 0)]; in fetch_vector4() 202 result[1] = src[GET_SWZ(source->Swizzle, 1)]; in fetch_vector4() 203 result[2] = src[GET_SWZ(source->Swizzle, 2)]; in fetch_vector4() 204 result[3] = src[GET_SWZ(source->Swizzle, 3)]; in fetch_vector4() 209 result[0] = -result[0]; in fetch_vector4() 210 result[1] = -result[1]; in fetch_vector4() 211 result[2] = -result[2]; in fetch_vector4() 212 result[3] = -result[3]; in fetch_vector4() [all …]
|
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L476RG/Drivers/CMSIS/Include/ |
D | cmsis_armcc_V6.h | 74 uint32_t result; in __get_CONTROL() local 76 __ASM volatile ("MRS %0, control" : "=r" (result) ); in __get_CONTROL() 77 return(result); in __get_CONTROL() 89 uint32_t result; in __TZ_get_CONTROL_NS() local 91 __ASM volatile ("MRS %0, control_ns" : "=r" (result) ); in __TZ_get_CONTROL_NS() 92 return(result); in __TZ_get_CONTROL_NS() 128 uint32_t result; in __get_IPSR() local 130 __ASM volatile ("MRS %0, ipsr" : "=r" (result) ); in __get_IPSR() 131 return(result); in __get_IPSR() 143 uint32_t result; in __TZ_get_IPSR_NS() local [all …]
|
D | cmsis_gcc.h | 82 uint32_t result; in __get_CONTROL() local 84 __ASM volatile ("MRS %0, control" : "=r" (result) ); in __get_CONTROL() 85 return(result); in __get_CONTROL() 107 uint32_t result; in __get_IPSR() local 109 __ASM volatile ("MRS %0, ipsr" : "=r" (result) ); in __get_IPSR() 110 return(result); in __get_IPSR() 121 uint32_t result; in __get_APSR() local 123 __ASM volatile ("MRS %0, apsr" : "=r" (result) ); in __get_APSR() 124 return(result); in __get_APSR() 136 uint32_t result; in __get_xPSR() local [all …]
|
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L4A6RG/Drivers/CMSIS/Include/ |
D | cmsis_armcc_V6.h | 74 uint32_t result; in __get_CONTROL() local 76 __ASM volatile ("MRS %0, control" : "=r" (result) ); in __get_CONTROL() 77 return(result); in __get_CONTROL() 89 uint32_t result; in __TZ_get_CONTROL_NS() local 91 __ASM volatile ("MRS %0, control_ns" : "=r" (result) ); in __TZ_get_CONTROL_NS() 92 return(result); in __TZ_get_CONTROL_NS() 128 uint32_t result; in __get_IPSR() local 130 __ASM volatile ("MRS %0, ipsr" : "=r" (result) ); in __get_IPSR() 131 return(result); in __get_IPSR() 143 uint32_t result; in __TZ_get_IPSR_NS() local [all …]
|
D | cmsis_gcc.h | 82 uint32_t result; in __get_CONTROL() local 84 __ASM volatile ("MRS %0, control" : "=r" (result) ); in __get_CONTROL() 85 return(result); in __get_CONTROL() 107 uint32_t result; in __get_IPSR() local 109 __ASM volatile ("MRS %0, ipsr" : "=r" (result) ); in __get_IPSR() 110 return(result); in __get_IPSR() 121 uint32_t result; in __get_APSR() local 123 __ASM volatile ("MRS %0, apsr" : "=r" (result) ); in __get_APSR() 124 return(result); in __get_APSR() 136 uint32_t result; in __get_xPSR() local [all …]
|
/external/selinux/libsemanage/src/ |
D | semanageswig_python_exception.i | 4 if (result < 0) { 13 if (result < 0) { 22 if (result < 0) { 31 if (result < 0) { 40 if (result < 0) { 49 if (result < 0) { 58 if (result < 0) { 67 if (result < 0) { 76 if (result < 0) { 85 if (result < 0) { [all …]
|
/external/llvm-project/clang/test/CodeGen/ |
D | builtins-overflow.c | 244 volatile int result; in test_add_overflow_volatile() local 245 if (__builtin_add_overflow(x, y, &result)) in test_add_overflow_volatile() 247 return result; in test_add_overflow_volatile() 253 unsigned result; in test_uadd_overflow() local 254 if (__builtin_uadd_overflow(x, y, &result)) in test_uadd_overflow() 256 return result; in test_uadd_overflow() 262 unsigned long result; in test_uaddl_overflow() local 263 if (__builtin_uaddl_overflow(x, y, &result)) in test_uaddl_overflow() 265 return result; in test_uaddl_overflow() 271 unsigned long long result; in test_uaddll_overflow() local [all …]
|
/external/arm-trusted-firmware/drivers/synopsys/ufs/ |
D | dw_ufs.c | 21 int result; in dwufs_phy_init() local 65 result = ufshc_dme_get(VS_MPHY_DISABLE_OFFSET, 0, &data); in dwufs_phy_init() 66 assert((result == 0) && (data == VS_MPHY_DISABLE_MPHYDIS)); in dwufs_phy_init() 71 result = ufshc_dme_get(TX_FSM_STATE_OFFSET, 0, &fsm0); in dwufs_phy_init() 72 assert(result == 0); in dwufs_phy_init() 73 result = ufshc_dme_get(TX_FSM_STATE_OFFSET, 1, &fsm1); in dwufs_phy_init() 74 assert(result == 0); in dwufs_phy_init() 86 result = ufshc_dme_get(VS_MK2_EXTN_SUPPORT_OFFSET, 0, &data); in dwufs_phy_init() 87 assert((result == 0) && (data == 0)); in dwufs_phy_init() 92 (void)result; in dwufs_phy_init() [all …]
|
/external/ms-tpm-20-ref/TPMCmd/tpm/src/support/ |
D | Marshal.c | 309 TPM_RC result; in TPM_ECC_CURVE_Unmarshal() local 310 result = UINT16_Unmarshal((UINT16 *)target, buffer, size); in TPM_ECC_CURVE_Unmarshal() 311 if(result == TPM_RC_SUCCESS) in TPM_ECC_CURVE_Unmarshal() 325 result = TPM_RC_CURVE; in TPM_ECC_CURVE_Unmarshal() 329 return result; in TPM_ECC_CURVE_Unmarshal() 367 TPM_RC result; in TPM_CLOCK_ADJUST_Unmarshal() local 368 result = INT8_Unmarshal((INT8 *)target, buffer, size); in TPM_CLOCK_ADJUST_Unmarshal() 369 if(result == TPM_RC_SUCCESS) in TPM_CLOCK_ADJUST_Unmarshal() 382 result = TPM_RC_VALUE; in TPM_CLOCK_ADJUST_Unmarshal() 386 return result; in TPM_CLOCK_ADJUST_Unmarshal() [all …]
|