Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 211 for sizeOf (0.56 sec)

  1. api/go1.5.txt

    pkg go/types, type SelectionKind int
    pkg go/types, type Signature struct
    pkg go/types, type Sizes interface { Alignof, Offsetsof, Sizeof }
    pkg go/types, type Sizes interface, Alignof(Type) int64
    pkg go/types, type Sizes interface, Offsetsof([]*Var) []int64
    pkg go/types, type Sizes interface, Sizeof(Type) int64
    pkg go/types, type Slice struct
    pkg go/types, type StdSizes struct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (Store {t} ptr val mem) && t.Size() == 8 &&  t.IsFloat() => (FMOVDstore ptr val mem)
    (Store {t} ptr val mem) && t.Size() == 4 &&  t.IsFloat() => (FMOVSstore ptr val mem)
    (Store {t} ptr val mem) && t.Size() == 8 && !t.IsFloat() => (MOVDstore ptr val mem)
    (Store {t} ptr val mem) && t.Size() == 4 && !t.IsFloat() => (MOVWstore ptr val mem)
    (Store {t} ptr val mem) && t.Size() == 2 => (MOVHstore ptr val 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)
  3. src/cmd/compile/internal/ssa/_gen/generic.rules

    	&& t1.Compare(x.Type) == types.CMPeq
    	&& t1.Size() == t2.Size()
    	&& disjoint(p4, t4.Size(), p2, t2.Size())
    	&& disjoint(p4, t4.Size(), p3, t3.Size())
    	=> x
    (Load <t1> p1 (Store {t2} p2 _ (Store {t3} p3 _ (Store {t4} p4 _ (Store {t5} p5 x _)))))
    	&& isSamePtr(p1, p5)
    	&& t1.Compare(x.Type) == types.CMPeq
    	&& t1.Size() == t2.Size()
    	&& disjoint(p5, t5.Size(), p2, t2.Size())
    	&& disjoint(p5, t5.Size(), p3, t3.Size())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Combinators.kt

        readCollectionInto({ size -> ArrayList(size) }) {
            readString()
        }
    
    
    fun Decoder.readStringsSet(): Set<String> =
        readCollectionInto({ size -> LinkedHashSet(size) }) {
            readString()
        }
    
    
    inline fun <T> Encoder.writeCollection(collection: Collection<T>, writeElement: (T) -> Unit) {
        writeSmallInt(collection.size)
        for (element in collection) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/dec.rules

    (Store {t} dst (ComplexMake real imag) mem) && t.Size() == 8 =>
      (Store {typ.Float32}
        (OffPtr <typ.Float32Ptr> [4] dst)
        imag
        (Store {typ.Float32} dst real mem))
    (Load <t> ptr mem) && t.IsComplex() && t.Size() == 16 =>
      (ComplexMake
        (Load <typ.Float64> ptr mem)
        (Load <typ.Float64>
          (OffPtr <typ.Float64Ptr> [8] ptr)
          mem)
        )
    (Store {t} dst (ComplexMake real imag) mem) && t.Size() == 16 =>
      (Store {typ.Float64}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/guava-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/guava/ImmutableMapCodec.kt

            writeMap(value)
        }
    
        override suspend fun ReadContext.decode(): ImmutableMap<Any, Any>? {
            val size = readSmallInt()
            val builder = ImmutableMap.builderWithExpectedSize<Any, Any>(size)
            for (i in 0 until size) {
                val key = read()!!
                val value = read()!!
                builder.put(key, value)
            }
            return builder.build()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/doc/c4/lib/C4_Container.puml

    !enddefinelong
    
    ' Elements
    ' ##################################
    
    !define Container(e_alias, e_label, e_techn) rectangle "==e_label\n//<size:TECHN_FONT_SIZE>[e_techn]</size>//" <<container>> as e_alias
    !define Container(e_alias, e_label, e_techn, e_descr) rectangle "==e_label\n//<size:TECHN_FONT_SIZE>[e_techn]</size>//\n\n e_descr" <<container>> as e_alias
    
    ' Boundaries
    ' ##################################
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/KtFe10TypeSystemCommonBackendContextForTypeMapping.kt

            if (this is ErrorTypeConstructor) {
                return ErrorUtils.createErrorType(kind, this, *formatParams)
            }
            require(this is TypeConstructor)
            require(parameters.size == arguments.size)
    
            val declaration = declarationDescriptor
            if (declaration == null) {
                val errorArguments = arguments.map { TypeProjectionImpl(it as KotlinType) }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinCompositeProviderFactory.kt

        private val composeProviders: (List<P>) -> P,
    ) {
        public fun create(providers: List<P>): P = when (providers.size) {
            0 -> emptyProvider
            1 -> providers.single()
            else -> composeProviders(providers)
        }
    
        public fun createFlattened(providers: List<P>): P =
            create(if (providers.size > 1) flatten(providers) else providers)
    
        public fun flatten(providers: List<P>): List<P> =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/AbstractCheckOrUpdateContributorsInReleaseNotes.kt

                throw IllegalStateException("Can't find the contributors section in the release notes $releaseNotes.")
            }
    
            val contributorSectionEndIndex = (contributorSectionBeginIndex until releaseNotesLines.size).firstOrNull {
                val line = releaseNotesLines[it].trim()
                line.isNotEmpty() && !line.startsWith("[")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 16 05:03:11 UTC 2022
    - 5.7K bytes
    - Viewed (0)
Back to top