Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 898 for findRef (0.18 sec)

  1. src/runtime/cgo/gcc_mipsx.S

     */
    .globl crosscall1
    .set noat
    crosscall1:
    #ifndef __mips_soft_float
    	addiu	$29, $29, -88
    #else
    	addiu	$29, $29, -40 // For soft-float, no need to make room for FP registers
    #endif
    	sw	$31, 0($29)
    	sw	$16, 4($29)
    	sw	$17, 8($29)
    	sw	$18, 12($29)
    	sw	$19, 16($29)
    	sw	$20, 20($29)
    	sw	$21, 24($29)
    	sw	$22, 28($29)
    	sw	$23, 32($29)
    	sw	$30, 36($29)
    
    #ifndef __mips_soft_float
    	sdc1	$f20, 40($29)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. src/runtime/cgo/gcc_mips64x.S

    .globl crosscall1
    .set noat
    crosscall1:
    #ifndef __mips_soft_float
    	daddiu	$29, $29, -160
    #else
    	daddiu	$29, $29, -96 // For soft-float, no need to make room for FP registers
    #endif
    	sd	$31, 0($29)
    	sd	$16, 8($29)
    	sd	$17, 16($29)
    	sd	$18, 24($29)
    	sd	$19, 32($29)
    	sd	$20, 40($29)
    	sd	$21, 48($29)
    	sd	$22, 56($29)
    	sd	$23, 64($29)
    	sd	$28, 72($29)
    	sd	$30, 80($29)
    #ifndef __mips_soft_float
    	sdc1	$f24, 88($29)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. src/runtime/tls_arm64.s

    #include "go_asm.h"
    #include "go_tls.h"
    #include "funcdata.h"
    #include "textflag.h"
    #include "tls_arm64.h"
    
    TEXT runtime·load_g(SB),NOSPLIT,$0
    #ifndef GOOS_darwin
    #ifndef GOOS_openbsd
    #ifndef GOOS_windows
    	MOVB	runtime·iscgo(SB), R0
    	CBZ	R0, nocgo
    #endif
    #endif
    #endif
    
    	MRS_TPIDR_R0
    #ifdef TLS_darwin
    	// Darwin sometimes returns unaligned pointers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 19 00:41:03 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/kernels/internal/compatibility_macros.h

    limitations under the License.
    ==============================================================================*/
    
    #ifndef TENSORFLOW_COMPILER_MLIR_LITE_KERNELS_INTERNAL_COMPATIBILITY_MACROS_H_
    #define TENSORFLOW_COMPILER_MLIR_LITE_KERNELS_INTERNAL_COMPATIBILITY_MACROS_H_
    
    #ifndef TFLITE_ABORT
    #define TFLITE_ABORT abort()
    #endif
    
    #ifndef TFLITE_ASSERT_FALSE
    #if defined(NDEBUG)
    #define TFLITE_ASSERT_FALSE (static_cast<void>(0))
    #else
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/packages/KotlinPackageProviderBase.kt

                val fqNameString = packageFqName.asString()
                buildSet {
                    forEachNonKotlinPsiElementFinder(project) { finder ->
                        val psiPackage = finder.findPackage(fqNameString) ?: return@forEachNonKotlinPsiElementFinder
                        for (subPackage in finder.getSubPackages(psiPackage, searchScope)) {
                            val name = subPackage.name?.let(Name::identifierIfValid) ?: continue
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. src/strings/export_test.go

    			}
    		}
    	}
    	return
    }
    
    func StringFind(pattern, text string) int {
    	return makeStringFinder(pattern).next(text)
    }
    
    func DumpTables(pattern string) ([]int, []int) {
    	finder := makeStringFinder(pattern)
    	return finder.badCharSkip[:], finder.goodSuffixSkip
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  7. src/regexp/testdata/testregex.c

    #ifndef REG_ICASE
    	"ICASE",
    #endif
    #ifndef REG_LEFT
    	"LEFT",
    #endif
    #ifndef REG_LENIENT
    	"LENIENT",
    #endif
    #ifndef REG_LITERAL
    	"LITERAL",
    #endif
    #ifndef REG_MINIMAL
    	"MINIMAL",
    #endif
    #ifndef REG_MULTIPLE
    	"MULTIPLE",
    #endif
    #ifndef REG_MULTIREF
    	"MULTIREF",
    #endif
    #ifndef REG_MUSTDELIM
    	"MUSTDELIM",
    #endif
    #ifndef REG_NEWLINE
    	"NEWLINE",
    #endif
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  8. subprojects/core-api/src/test/groovy/org/gradle/initialization/UserHomeInitScriptFinderTest.groovy

        private UserHomeInitScriptFinder finder
    
        def setup() {
            finder = new UserHomeInitScriptFinder(temporaryFolder.getTestDirectory())
        }
    
        def "adds user #initScriptName init script when it exits"() {
            given:
            def initScript = temporaryFolder.createFile(initScriptName)
            def sourceList = []
    
            when:
            finder.findScripts(sourceList)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  9. src/internal/runtime/atomic/atomic_arm.s

    	MOVW	old+4(FP), R2
    	MOVW	new+8(FP), R3
    casl:
    	LDREX	(R1), R0
    	CMP	R0, R2
    	BNE	casfail
    
    #ifndef GOARM_7
    	MOVB	internal∕cpu·ARM+const_offsetARMHasV7Atomics(SB), R11
    	CMP	$0, R11
    	BEQ	2(PC)
    #endif
    	DMB	MB_ISHST
    
    	STREX	R3, (R1), R0
    	CMP	$0, R0
    	BNE	casl
    	MOVW	$1, R0
    
    #ifndef GOARM_7
    	CMP	$0, R11
    	BEQ	2(PC)
    #endif
    	DMB	MB_ISH
    
    	MOVB	R0, ret+12(FP)
    	RET
    casfail:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    -				      __uint32_t, __uint32_t, size_t);
    +# ifndef _FORCE_INLINES
    +#  if _STRING_ARCH_unaligned
     __STRING_INLINE char *
     __stpcpy_small (char *__dest,
     		__uint16_t __src0_2, __uint16_t __src4_2,
    @@ -665,43 +375,7 @@ __stpcpy_small (char *__dest,
         }
       return &__u->__c;
     }
    -#   else
    -#    ifndef _FORCE_INLINES
    -#     define __stpcpy_args(src) \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 42.9K bytes
    - Viewed (0)
Back to top