Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 105 for loop (0.27 sec)

  1. src/cmd/compile/internal/ssa/_gen/MIPS.rules

    	(MOVWstore [12] ptr (MOVWconst [0])
    		(MOVWstore [8] ptr (MOVWconst [0])
    			(MOVWstore [4] ptr (MOVWconst [0])
    				(MOVWstore [0] ptr (MOVWconst [0]) mem))))
    
    // large or unaligned zeroing uses a loop
    (Zero [s] {t} ptr mem)
    	&& (s > 16  || t.Alignment()%4 != 0) =>
    	(LoweredZero [int32(t.Alignment())]
    		ptr
    		(ADDconst <ptr.Type> ptr [int32(s-moveSize(t.Alignment(), config))])
    		mem)
    
    // moves
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 35.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/MIPS64.rules

    (Zero [s] {t} ptr mem)
    	&& s%8 == 0 && s > 24 && s <= 8*128
    	&& t.Alignment()%8 == 0 && !config.noDuffDevice =>
    	(DUFFZERO [8 * (128 - s/8)] ptr mem)
    
    // large or unaligned zeroing uses a loop
    (Zero [s] {t} ptr mem)
    	&& (s > 8*128 || config.noDuffDevice) || t.Alignment()%8 != 0 =>
    	(LoweredZero [t.Alignment()]
    		ptr
    		(ADDVconst <ptr.Type> ptr [s-moveSize(t.Alignment(), config)])
    		mem)
    
    // moves
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 41.9K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/popper.min.js.map

    isn't supported\n  const match = find(arr, obj => obj[prop] === value);\n  return arr.indexOf(match);\n}\n","import isFunction from './isFunction';\nimport findIndex from './findIndex';\nimport getClientRect from '../utils/getClientRect';\n\n/**\n * Loop trough the list of modifiers and run them in order,\n * each of them will then edit the data object.\n * @method\n * @memberof Popper.Utils\n * @param {dataObject} data\n * @param {Array} modifiers\n * @param {String} ends - Optional modifier name...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
  4. ChangeLog.md

    - [`KT-17694`](https://youtrack.jetbrains.com/issue/KT-17694) Smart cast impossible on var declared in init block with a secondary constructor
    - [`KT-47895`](https://youtrack.jetbrains.com/issue/KT-47895) NullPointerException in `PSICallResolver.resolveToDeprecatedMod` with incorrect loop range
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (Move [7] dst src mem) =>
            (MOVBstore [6] dst (MOVBZload [6] src mem)
                    (MOVHstore [4] dst (MOVHZload [4] src mem)
                            (MOVWstore dst (MOVWZload src mem) mem)))
    
    // Large move uses a loop. Since the address is computed and the
    // offset is zero, any alignment can be used.
    (Move [s] dst src mem) && s > 8 && buildcfg.GOPPC64 <= 8 && logLargeCopy(v, s) =>
            (LoweredMove [s] dst src mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    (Zero [s] {t} ptr mem)
    	&& s%8 == 0 && s <= 8*128
    	&& t.Alignment()%8 == 0 && !config.noDuffDevice =>
    	(DUFFZERO [8 * (128 - s/8)] ptr mem)
    
    // Generic zeroing uses a loop
    (Zero [s] {t} ptr mem) =>
    	(LoweredZero [t.Alignment()]
    		ptr
    		(ADD <ptr.Type> ptr (MOVDconst [s-moveSize(t.Alignment(), config)]))
    		mem)
    
    // Checks
    (IsNonNil ...) => (SNEZ ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // 4, 16, and 64 are magic constants, see runtime/mkduff.go
    (Zero [s] ptr mem)
    	&& s%16 == 0 && s > 64 && s <= 16*64
    	&& !config.noDuffDevice =>
    	(DUFFZERO [4 * (64 - s/16)] ptr mem)
    
    // large zeroing uses a loop
    (Zero [s] ptr mem)
    	&& s%16 == 0 && (s > 16*64 || config.noDuffDevice) =>
    	(LoweredZero
    		ptr
    		(ADDconst <ptr.Type> [s-16] ptr)
    		mem)
    
    // moves
    (Move [0] _   _   mem) => mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/exitPointEquivalence/breakContinueAndDefault.kt

    fun foo(a: Int) {
        val b: Int = 1
        loop1@ for (p in 1..b) {
            loop2@ for (n in 1..b) {
                <expr>if (a > 0) throw Exception("")
                if (a + b > 0) break@loop2
                if (a - b > 0) continue@loop1</expr>
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 253 bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/breakContinue2.kt

    fun foo(a: Int) {
        val b: Int = 1
        loop1@ for (p in 1..b) {
            loop2@ for (n in 1..b) {
                <expr>if (a > 0) throw Exception("")
                if (a + b > 0) break@loop2
                if (a - b > 0) continue@loop1</expr>
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 06:40:43 UTC 2024
    - 253 bytes
    - Viewed (0)
  10. src/main/webapp/js/admin/bootstrap.min.js.map

    .one(Util.TRANSITION_END, transitionComplete)\n        .emulateTransitionEnd(transitionDuration)\n    } else {\n      transitionComplete()\n    }\n  }\n\n  _enforceFocus() {\n    $(document)\n      .off(Event.FOCUSIN) // Guard against infinite focus loop\n      .on(Event.FOCUSIN, (event) => {\n        if (document !== event.target &&\n            this._element !== event.target &&\n            $(this._element).has(event.target).length === 0) {\n          this._element.focus()\n        }\n      })\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 185.8K bytes
    - Viewed (0)
Back to top