Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 94 of 94 for IMMEDIATE (0.22 sec)

  1. doc/asm.html

    <br>
    <code>R0&gt;&gt;16</code>
    <br>
    <code>R0&lt;&lt;16</code>
    <br>
    <code>R0@&gt;16</code>:
    These are the same as on the 32-bit ARM.
    </li>
    
    <li>
    <code>$(8&lt;&lt;12)</code>:
    Left shift the immediate value <code>8</code> by <code>12</code> bits.
    </li>
    
    <li>
    <code>8(R0)</code>:
    Add the value of <code>R0</code> and <code>8</code>.
    </li>
    
    <li>
    <code>(R2)(R0)</code>:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  2. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    ====
    +
    This is not as robust or powerful as Gradle's <<declaring_dependencies_between_subprojects#sec:project_jar_dependencies,project dependencies>>, but it solves the immediate problem without big changes to the build.
    Just be careful to remove or override any dependencies on tasks that delegate to other subprojects, like the `buildRequiredProjects` task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  3. src/runtime/runtime2.go

    	limiterEvent limiterEvent
    
    	// gcMarkWorkerMode is the mode for the next mark worker to run in.
    	// That is, this is used to communicate with the worker goroutine
    	// selected for immediate execution by
    	// gcController.findRunnableGCWorker. When scheduling other goroutines,
    	// this field must be set to gcMarkWorkerNotWorker.
    	gcMarkWorkerMode gcMarkWorkerMode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  4. src/runtime/asm_arm64.s

    	MOVD	$0, R0
    	MOVD	R0, (R0)	// boom
    	UNDEF
    
    DATA	runtime·mainPC+0(SB)/8,$runtime·main<ABIInternal>(SB)
    GLOBL	runtime·mainPC(SB),RODATA,$8
    
    // Windows ARM64 needs an immediate 0xf000 argument.
    // See go.dev/issues/53837.
    #define BREAK	\
    #ifdef GOOS_windows	\
    	BRK	$0xf000 	\
    #else 				\
    	BRK 			\
    #endif 				\
    
    
    TEXT runtime·breakpoint(SB),NOSPLIT|NOFRAME,$0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
Back to top