Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,076 for unassigned (0.22 sec)

  1. src/encoding/gob/decode.go

    		error_(ovfl)
    	}
    	return v
    }
    
    // decFloat32 decodes an unsigned integer, treats it as a 32-bit floating-point
    // number, and stores it in value.
    func decFloat32(i *decInstr, state *decoderState, value reflect.Value) {
    	value.SetFloat(float32FromBits(state.decodeUint(), i.ovfl))
    }
    
    // decFloat64 decodes an unsigned integer, treats it as a 64-bit floating-point
    // number, and stores it in value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/a.out.go

    	C_U1CON    /* 1 bit unsigned constant */
    	C_U2CON    /* 2 bit unsigned constant */
    	C_U3CON    /* 3 bit unsigned constant */
    	C_U4CON    /* 4 bit unsigned constant */
    	C_U5CON    /* 5 bit unsigned constant */
    	C_U8CON    /* 8 bit unsigned constant */
    	C_U15CON   /* 15 bit unsigned constant */
    	C_S16CON   /* 16 bit signed constant */
    	C_U16CON   /* 16 bit unsigned constant */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. src/internal/types/testdata/spec/conversions.go

    func _[X Integer, T Integer](x X) T  { return T(x) }
    func _[X Unsigned, T Integer](x X) T { return T(x) }
    func _[X Float, T Integer](x X) T    { return T(x) }
    
    func _[X Integer, T Unsigned](x X) T  { return T(x) }
    func _[X Unsigned, T Unsigned](x X) T { return T(x) }
    func _[X Float, T Unsigned](x X) T    { return T(x) }
    
    func _[X Integer, T Float](x X) T  { return T(x) }
    func _[X Unsigned, T Float](x X) T { return T(x) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  4. src/debug/dwarf/testdata/bitfields.c

    // license that can be found in the LICENSE file.
    
    /*
    Linux ELF:
    gcc -gdwarf-4 -m64 -c bitfields.c -o bitfields.elf4
    */
    
    typedef struct another_struct {
      unsigned short quix;
      int xyz[0];
      unsigned  x:1;
      long long array[40];
    } t_another_struct;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 28 20:07:54 UTC 2022
    - 381 bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/fuse_comparisons.go

    // in the unsigned domain.
    func isUnsignedInequality(v *Value) bool {
    	switch v.Op {
    	case OpLess64U, OpLess32U, OpLess16U, OpLess8U,
    		OpLeq64U, OpLeq32U, OpLeq16U, OpLeq8U:
    		return true
    	}
    	return false
    }
    
    func areMergeableInequalities(x, y *Value) bool {
    	// We need both inequalities to be either in the signed or unsigned domain.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 4K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

    // to an object is destroyed or reassigned, the object is deleted.
    //
    // Used properly, this deletes the object when the last reference goes away.
    // There are several caveats:
    // - Like all reference counting schemes, cycles lead to leaks.
    // - Each smart pointer is actually two pointers (8 bytes instead of 4).
    // - Every time a pointer is assigned, the entire list of pointers to that
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. tensorflow/c/c_api_experimental.cc

      }
    }
    
    unsigned char TF_SetXlaEnableLazyCompilation(unsigned char enable) {
      tensorflow::BuildXlaOpsPassFlags* flags =
          tensorflow::GetBuildXlaOpsPassFlags();
      bool original = flags->tf_xla_enable_lazy_compilation;
      flags->tf_xla_enable_lazy_compilation = enable;
      return original;
    }
    
    unsigned char TF_SetTfXlaCpuGlobalJit(unsigned char enable) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    		[6]*argField{ap_VecReg_6_10, ap_VecReg_11_15, ap_VecReg_16_20}},
    	{VPKUWUM, 0xfc0007ff00000000, 0x1000004e00000000, 0x0, // Vector Pack Unsigned Word Unsigned Modulo VX-form (vpkuwum VRT,VRA,VRB)
    		[6]*argField{ap_VecReg_6_10, ap_VecReg_11_15, ap_VecReg_16_20}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

    {
    #ifdef USE_DEPRECATED_CUNIT_NAMES
      /** Union to support v1.1-1 member name. */
      union {
        unsigned int uiNumberOfSuites;  /**< Number of suites in the test registry. */
        unsigned int uiNumberOfGroups;  /**< Deprecated (version 1). @deprecated Use uiNumberOfSuites. */
      };
      unsigned int uiNumberOfTests;     /**< Number of tests in the test registry. */
      /** Union to support v1.1-1 member name. */
      union {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/WasmOps.go

    		{name: "I64Load8S", asm: "I64Load8S", argLength: 2, reg: gpload, aux: "Int64", typ: "Int8"},     // read signed 8-bit integer from address arg0+aux, arg1=mem
    		{name: "I64Load16U", asm: "I64Load16U", argLength: 2, reg: gpload, aux: "Int64", typ: "UInt16"}, // read unsigned 16-bit integer from address arg0+aux, arg1=mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.7K bytes
    - Viewed (0)
Back to top