Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for type$val (0.24 sec)

  1. src/debug/elf/elf.go

    	Align  uint32 /* Alignment in memory and file. */
    }
    
    // ELF32 Dynamic structure. The ".dynamic" section contains an array of them.
    type Dyn32 struct {
    	Tag int32  /* Entry type. */
    	Val uint32 /* Integer/Address value. */
    }
    
    // ELF32 Compression header.
    type Chdr32 struct {
    	Type      uint32
    	Size      uint32
    	Addralign uint32
    }
    
    /*
     * Relocation entries.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    // this.super(p0 .. pn)
                    _ALOAD(0);
                    for (int typeVar = addNameParameter ? 1 : 0, stackVar = addNameParameter ? 2 : 1; typeVar < paramTypes.size(); ++typeVar) {
                        Type argType = paramTypes.get(typeVar);
                        _ILOAD_OF(argType, stackVar);
                        stackVar += argType.getSize();
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    	// cond: is32Bit(val) && !t.IsPtr()
    	// result: (ADDI [val] x)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			if v_0.Op != OpRISCV64MOVDconst {
    				continue
    			}
    			t := v_0.Type
    			val := auxIntToInt64(v_0.AuxInt)
    			x := v_1
    			if !(is32Bit(val) && !t.IsPtr()) {
    				continue
    			}
    			v.reset(OpRISCV64ADDI)
    			v.AuxInt = int64ToAuxInt(val)
    			v.AddArg(x)
    			return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  4. src/reflect/all_test.go

    func TestStructOfWithInterface(t *testing.T) {
    	const want = 42
    	type Iface interface {
    		Get() int
    	}
    	type IfaceSet interface {
    		Set(int)
    	}
    	tests := []struct {
    		name string
    		typ  Type
    		val  Value
    		impl bool
    	}{
    		{
    			name: "StructI",
    			typ:  TypeOf(StructI(want)),
    			val:  ValueOf(StructI(want)),
    			impl: true,
    		},
    		{
    			name: "StructI",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  5. fastapi/applications.py

    from enum import Enum
    from typing import (
        Any,
        Awaitable,
        Callable,
        Coroutine,
        Dict,
        List,
        Optional,
        Sequence,
        Type,
        TypeVar,
        Union,
    )
    
    from fastapi import routing
    from fastapi.datastructures import Default, DefaultPlaceholder
    from fastapi.exception_handlers import (
        http_exception_handler,
        request_validation_exception_handler,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
Back to top