Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 131 for Macro (0.04 sec)

  1. src/crypto/sha1/sha1block_arm.s

    //
    // There are 80 rounds of 4 types:
    //   - rounds 0-15 are type 1 and load data (ROUND1 macro).
    //   - rounds 16-19 are type 1 and do not load data (ROUND1x macro).
    //   - rounds 20-39 are type 2 and do not load data (ROUND2 macro).
    //   - rounds 40-59 are type 3 and do not load data (ROUND3 macro).
    //   - rounds 60-79 are type 4 and do not load data (ROUND4 macro).
    //
    // Each round loads or shuffles the data, then computes a per-round
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/IncludeDirectivesSerializer.java

        private final ListSerializer<Include> includeListSerializer = new ListSerializer<Include>(new IncludeSerializer(enumSerializer, expressionSerializer));
        private final CollectionSerializer<Macro> macroListSerializer = new CollectionSerializer<Macro>(new MacroSerializer(enumSerializer, expressionSerializer));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/language/language.go

    							t.ScriptID = _Latn
    						}
    						t.LangID = l
    						changed = true
    					}
    				case language.Macro:
    					if c&Macro != 0 {
    						// We deviate here from CLDR. The mapping "nb" -> "no"
    						// qualifies as a typical Macro language mapping.  However,
    						// for legacy reasons, CLDR maps "no", the macro language
    						// code for Norwegian, to the dominant variant "nb". This
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

    //
    // ParameterizedTestCaseInfoBase is a generic interface
    // to ParameterizedTestCaseInfo classes. ParameterizedTestCaseInfoBase
    // accumulates test information provided by TEST_P macro invocations
    // and generators provided by INSTANTIATE_TEST_CASE_P macro invocations
    // and uses that information to register all resulting test instances
    // in RegisterTests method. The ParameterizeTestCaseRegistry class holds
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/AbstractExpression.java

        }
    
        static Expression asMacroExpansion(Expression expression) {
            if (expression.getType() == IncludeType.IDENTIFIER) {
                return new SimpleExpression(expression.getValue(), IncludeType.MACRO);
            }
            if (expression.getType() == IncludeType.TOKEN_CONCATENATION) {
                return new ComplexExpression(IncludeType.EXPAND_TOKEN_CONCATENATION, expression.getValue(), expression.getArguments());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. src/crypto/sha1/sha1block_386.s

    //
    // There are 80 rounds of 4 types:
    //   - rounds 0-15 are type 1 and load data (ROUND1 macro).
    //   - rounds 16-19 are type 1 and do not load data (ROUND1x macro).
    //   - rounds 20-39 are type 2 and do not load data (ROUND2 macro).
    //   - rounds 40-59 are type 3 and do not load data (ROUND3 macro).
    //   - rounds 60-79 are type 4 and do not load data (ROUND4 macro).
    //
    // Each round loads or shuffles the data, then computes a per-round
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

    //
    // ParameterizedTestCaseInfoBase is a generic interface
    // to ParameterizedTestCaseInfo classes. ParameterizedTestCaseInfoBase
    // accumulates test information provided by TEST_P macro invocations
    // and generators provided by INSTANTIATE_TEST_CASE_P macro invocations
    // and uses that information to register all resulting test instances
    // in RegisterTests method. The ParameterizeTestCaseRegistry class holds
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/cpp-lib/groovy/build.gradle

    plugins {
        id "cpp"
    }
    // end::use-plugin[]
    
    // tag::args[]
    model {
        components {
            main(NativeLibrarySpec) {
                binaries.withType(SharedLibraryBinarySpec) {
                    // Define a preprocessor macro that only applies to shared libraries
                    cppCompiler.define "DLL_EXPORT"
                }
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 379 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/multi-project/groovy/lib/build.gradle

    plugins {
        id 'cpp'
    }
    
    model {
        components {
            main(NativeLibrarySpec)
        }
    
        // For any shared library binaries built with Visual C++,
        // define the DLL_EXPORT macro
        binaries {
            withType(SharedLibraryBinarySpec) {
                if (toolChain in VisualCpp) {
                    cppCompiler.define "DLL_EXPORT"
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 368 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/windows-resources/groovy/build.gradle

                }
            }
        }
    
        binaries {
            all {
                linker.args "user32.lib"
            }
    
            // For any shared library binaries built with Visual C++, define the DLL_EXPORT macro
            withType(SharedLibraryBinarySpec) {
                if (toolChain in VisualCpp) {
                    cppCompiler.define "DLL_EXPORT"
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 711 bytes
    - Viewed (0)
Back to top