Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for 2048 (0.41 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS___FLOORF_H                      = 0x7F6 // 2038
    	SYS___FLOORL_H                      = 0x7F7 // 2039
    	SYS___MODFF_H                       = 0x7F8 // 2040
    	SYS___MODFL_H                       = 0x7F9 // 2041
    	SYS___FABSF_H                       = 0x7FA // 2042
    	SYS___FABSL_H                       = 0x7FB // 2043
    	SYS___MALLOC24                      = 0x7FC // 2044
    	SYS___MALLOC31                      = 0x7FD // 2045
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	LANG_ENGLISH       = 0x09
    	SUBLANG_ENGLISH_US = 0x01
    
    	FORMAT_MESSAGE_ALLOCATE_BUFFER = 256
    	FORMAT_MESSAGE_IGNORE_INSERTS  = 512
    	FORMAT_MESSAGE_FROM_STRING     = 1024
    	FORMAT_MESSAGE_FROM_HMODULE    = 2048
    	FORMAT_MESSAGE_FROM_SYSTEM     = 4096
    	FORMAT_MESSAGE_ARGUMENT_ARRAY  = 8192
    	FORMAT_MESSAGE_MAX_WIDTH_MASK  = 255
    
    	MAX_PATH      = 260
    	MAX_LONG_PATH = 32768
    
    	MAX_MODULE_NAME32 = 255
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (SLT x (MOVDconst [val]))
    	// cond: val >= -2048 && val <= 2047
    	// result: (SLTI [val] x)
    	for {
    		x := v_0
    		if v_1.Op != OpRISCV64MOVDconst {
    			break
    		}
    		val := auxIntToInt64(v_1.AuxInt)
    		if !(val >= -2048 && val <= 2047) {
    			break
    		}
    		v.reset(OpRISCV64SLTI)
    		v.AuxInt = int64ToAuxInt(val)
    		v.AddArg(x)
    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/cmd/internal/obj/x86/asm6.go

    // least as high as a, which should be a power of two
    // and between 8 and 2048, inclusive.
    //
    // the boolean result indicates whether the alignment meets those constraints
    func requireAlignment(a int64, ctxt *obj.Link, cursym *obj.LSym) bool {
    	if !((a&(a-1) == 0) && 8 <= a && a <= 2048) {
    		ctxt.Diag("alignment value of an instruction must be a power of two and in the range [8, 2048], got %d\n", a)
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/asm7.go

    	{AMOVB, C_ZREG, C_NONE, C_NONE, C_UAUTO4K, C_NONE, 20, 4, REGSP, 0, 0},
    	{AMOVB, C_ZREG, C_NONE, C_NONE, C_UOREG4K, C_NONE, 20, 4, 0, 0, 0},
    	{AMOVH, C_ZREG, C_NONE, C_NONE, C_UAUTO8K, C_NONE, 20, 4, REGSP, 0, 0},
    	{AMOVH, C_ZREG, C_NONE, C_NONE, C_UOREG8K, C_NONE, 20, 4, 0, 0, 0},
    	{AMOVW, C_ZREG, C_NONE, C_NONE, C_UAUTO16K, C_NONE, 20, 4, REGSP, 0, 0},
    	{AMOVW, C_ZREG, C_NONE, C_NONE, C_UOREG16K, C_NONE, 20, 4, 0, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/asm9.go

    	/* In order to match the output of the GNU objdump (and make the usage in Go asm easier), the */
    	/* instruction is called using the sign extended value (i.e. a valid offset would be -32752 or 32752, */
    	/* not -2047 or 2047), so 'b' needs to be adjusted to the expected 12-bit DQ value. Bear in mind that */
    	/* bits 0 to 3 in 'dq' need to be zero, otherwise this will generate an illegal instruction. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

    /*
     * Copyright (C) 2008 The Guava Authors
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     * http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

    /*
     * Copyright (C) 2008 The Guava Authors
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     * http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  9. src/cmd/trace/testdata/go122.test

    String id=203
    	data="runtime.traceLocker.GCSweepSpan"
    String id=204
    	data="runtime.(*sweepLocked).sweep"
    String id=205
    	data="net.(*netFD).Write"
    String id=206
    	data="net.(*conn).Write"
    String id=207
    	data="runtime.(*traceAdvancerState).start"
    String id=208
    	data="runtime.traceLocker.Gomaxprocs"
    String id=209
    	data="net.setDefaultListenerSockopts"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
Back to top