Home
last modified time | relevance | path

Searched refs:typeptr (Results 1 – 25 of 169) sorted by relevance

1234567

/dports/net/mpich/mpich-3.4.3/src/mpi/datatype/typerep/src/
H A Dtyperep_yaksa_commit.c14 MPIR_Datatype *typeptr; in MPIR_Typerep_commit() local
15 MPIR_Datatype_get_ptr(type, typeptr); in MPIR_Typerep_commit()
20 typeptr->typerep.handle = (void *) YAKSA_TYPE__FLOAT_INT; in MPIR_Typerep_commit()
22 typeptr->typerep.num_contig_blocks = (MPI_Aint) num_contig_blocks; in MPIR_Typerep_commit()
26 typeptr->typerep.handle = (void *) YAKSA_TYPE__DOUBLE_INT; in MPIR_Typerep_commit()
28 typeptr->typerep.num_contig_blocks = (MPI_Aint) num_contig_blocks; in MPIR_Typerep_commit()
32 typeptr->typerep.handle = (void *) YAKSA_TYPE__LONG_INT; in MPIR_Typerep_commit()
38 typeptr->typerep.handle = (void *) YAKSA_TYPE__SHORT_INT; in MPIR_Typerep_commit()
44 typeptr->typerep.handle = (void *) YAKSA_TYPE__LONG_DOUBLE_INT; in MPIR_Typerep_commit()
60 void MPIR_Typerep_free(MPIR_Datatype * typeptr) in MPIR_Typerep_free() argument
[all …]
H A Dtyperep_dataloop_commit.c57 MPIR_Datatype *typeptr; in create_pairtype() local
58 MPIR_Datatype_get_ptr(type, typeptr); in create_pairtype()
62 PAIRTYPE_GET_NUM_CONTIG_BLOCKS(float, int, typeptr->typerep.num_contig_blocks); in create_pairtype()
68 PAIRTYPE_GET_NUM_CONTIG_BLOCKS(long, int, typeptr->typerep.num_contig_blocks); in create_pairtype()
71 PAIRTYPE_GET_NUM_CONTIG_BLOCKS(short, int, typeptr->typerep.num_contig_blocks); in create_pairtype()
77 PAIRTYPE_GET_NUM_CONTIG_BLOCKS(int, int, typeptr->typerep.num_contig_blocks); in create_pairtype()
104 MPIR_Datatype *typeptr; in MPIR_Typerep_commit() local
105 MPIR_Datatype_get_ptr(type, typeptr); in MPIR_Typerep_commit()
106 void **dlp_p = (void **) &typeptr->typerep.handle; in MPIR_Typerep_commit()
369 void MPIR_Typerep_free(MPIR_Datatype * typeptr) in MPIR_Typerep_free() argument
[all …]
H A Dtyperep_yaksa_pack_external.c220 MPIR_Datatype *typeptr; in MPIR_Typerep_pack_external() local
221 MPIR_Datatype_get_ptr(datatype, typeptr); in MPIR_Typerep_pack_external()
225 *actual_pack_bytes = typeptr->size * incount; in MPIR_Typerep_pack_external()
244 basic_type = typeptr->basic_type; in MPIR_Typerep_pack_external()
398 MPIR_Datatype *typeptr; in MPIR_Typerep_unpack_external() local
399 MPIR_Datatype_get_ptr(datatype, typeptr); in MPIR_Typerep_unpack_external()
422 basic_type = typeptr->basic_type; in MPIR_Typerep_unpack_external()
574 MPIR_Datatype *typeptr; in MPIR_Typerep_size_external32() local
575 MPIR_Datatype_get_ptr(type, typeptr); in MPIR_Typerep_size_external32()
581 basic_type = typeptr->basic_type; in MPIR_Typerep_size_external32()
[all …]
/dports/cad/scotch/scotch-6.0.4/src/libscotch/
H A Dlibrary_dgraph_halo_f.c90 MPI_Fint * const typeptr, \
92 (grafptr, datatab, typeptr, revaptr))
96 typeval = MPI_Type_f2c (*typeptr);
108 MPI_Fint * const typeptr, \
111 (grafptr, datatab, typeptr, requptr, revaptr))
115 typeval = MPI_Type_f2c (*typeptr);
/dports/biology/babel/babel-1.6/
H A Dblock.c88 #define typeptr(CHAR, TYPE) if(types[i] == CHAR) { \ macro
124 typeptr('c', char); in block__doalloc()
125 typeptr('i', int); in block__doalloc()
126 typeptr('f', float); in block__doalloc()
127 typeptr('d', double); in block__doalloc()
128 typeptr('B', int); in block__doalloc()
129 typeptr('v', void *); in block__doalloc()
/dports/graphics/graphviz/graphviz-2.44.1/lib/gvc/
H A Dgvlayout.c36 gvplugin_installed_t *typeptr; in gvlayout_select() local
40 typeptr = plugin->typeptr; in gvlayout_select()
41 gvc->layout.type = typeptr->type; in gvlayout_select()
42 gvc->layout.engine = (gvlayout_engine_t *) (typeptr->engine); in gvlayout_select()
43 gvc->layout.id = typeptr->id; in gvlayout_select()
44 gvc->layout.features = (gvlayout_features_t *) (typeptr->features); in gvlayout_select()
H A Dgvloadimage.c35 gvplugin_installed_t *typeptr; in gvloadimage_select() local
39 typeptr = plugin->typeptr; in gvloadimage_select()
40 job->loadimage.engine = (gvloadimage_engine_t *) (typeptr->engine); in gvloadimage_select()
41 job->loadimage.id = typeptr->id; in gvloadimage_select()
H A Dgvtextlayout.c28 gvplugin_installed_t *typeptr; in gvtextlayout_select() local
32 typeptr = plugin->typeptr; in gvtextlayout_select()
33 gvc->textlayout.engine = (gvtextlayout_engine_t *) (typeptr->engine); in gvtextlayout_select()
/dports/www/gitea/gitea-1.16.5/vendor/github.com/goccy/go-json/internal/encoder/
H A Dcompiler_norace.go6 func CompileToGetCodeSet(ctx *RuntimeContext, typeptr uintptr) (*OpcodeSet, error) {
7 if typeptr > typeAddr.MaxTypeAddr {
8 return compileToGetCodeSetSlowPath(typeptr)
10 index := (typeptr - typeAddr.BaseTypeAddr) >> typeAddr.AddrShift
18 codeSet, err := newCompiler().compile(typeptr)
H A Dcompiler_race.go12 func CompileToGetCodeSet(ctx *RuntimeContext, typeptr uintptr) (*OpcodeSet, error) {
13 if typeptr > typeAddr.MaxTypeAddr {
14 return compileToGetCodeSetSlowPath(typeptr)
16 index := (typeptr - typeAddr.BaseTypeAddr) >> typeAddr.AddrShift
29 codeSet, err := newCompiler().compile(typeptr)
/dports/www/minio-client/mc-RELEASE.2021-12-10T00-14-28Z/vendor/github.com/goccy/go-json/internal/encoder/
H A Dcompiler_norace.go11 func CompileToGetCodeSet(typeptr uintptr) (*OpcodeSet, error) {
12 if typeptr > typeAddr.MaxTypeAddr {
13 return compileToGetCodeSetSlowPath(typeptr)
15 index := (typeptr - typeAddr.BaseTypeAddr) >> typeAddr.AddrShift
21 copiedType := *(**runtime.Type)(unsafe.Pointer(&typeptr))
H A Dcompiler_race.go14 func CompileToGetCodeSet(typeptr uintptr) (*OpcodeSet, error) {
15 if typeptr > typeAddr.MaxTypeAddr {
16 return compileToGetCodeSetSlowPath(typeptr)
18 index := (typeptr - typeAddr.BaseTypeAddr) >> typeAddr.AddrShift
27 copiedType := *(**runtime.Type)(unsafe.Pointer(&typeptr))
/dports/ftp/sftpgo/sftpgo-2.2.0/vendor/github.com/goccy/go-json/internal/encoder/
H A Dcompiler_norace.go11 func CompileToGetCodeSet(typeptr uintptr) (*OpcodeSet, error) {
12 if typeptr > typeAddr.MaxTypeAddr {
13 return compileToGetCodeSetSlowPath(typeptr)
15 index := (typeptr - typeAddr.BaseTypeAddr) >> typeAddr.AddrShift
21 copiedType := *(**runtime.Type)(unsafe.Pointer(&typeptr))
H A Dcompiler_race.go14 func CompileToGetCodeSet(typeptr uintptr) (*OpcodeSet, error) {
15 if typeptr > typeAddr.MaxTypeAddr {
16 return compileToGetCodeSetSlowPath(typeptr)
18 index := (typeptr - typeAddr.BaseTypeAddr) >> typeAddr.AddrShift
27 copiedType := *(**runtime.Type)(unsafe.Pointer(&typeptr))
/dports/www/gitea/gitea-1.16.5/vendor/github.com/goccy/go-json/internal/decoder/
H A Dcompile_norace.go12 typeptr := uintptr(unsafe.Pointer(typ))
13 if typeptr > typeAddr.MaxTypeAddr {
14 return compileToGetDecoderSlowPath(typeptr, typ)
17 index := (typeptr - typeAddr.BaseTypeAddr) >> typeAddr.AddrShift
H A Dcompile_race.go15 typeptr := uintptr(unsafe.Pointer(typ))
16 if typeptr > typeAddr.MaxTypeAddr {
17 return compileToGetDecoderSlowPath(typeptr, typ)
20 index := (typeptr - typeAddr.BaseTypeAddr) >> typeAddr.AddrShift
/dports/www/minio-client/mc-RELEASE.2021-12-10T00-14-28Z/vendor/github.com/goccy/go-json/internal/decoder/
H A Dcompile_norace.go12 typeptr := uintptr(unsafe.Pointer(typ))
13 if typeptr > typeAddr.MaxTypeAddr {
14 return compileToGetDecoderSlowPath(typeptr, typ)
17 index := (typeptr - typeAddr.BaseTypeAddr) >> typeAddr.AddrShift
H A Dcompile_race.go15 typeptr := uintptr(unsafe.Pointer(typ))
16 if typeptr > typeAddr.MaxTypeAddr {
17 return compileToGetDecoderSlowPath(typeptr, typ)
20 index := (typeptr - typeAddr.BaseTypeAddr) >> typeAddr.AddrShift
/dports/ftp/sftpgo/sftpgo-2.2.0/vendor/github.com/goccy/go-json/internal/decoder/
H A Dcompile_norace.go12 typeptr := uintptr(unsafe.Pointer(typ))
13 if typeptr > typeAddr.MaxTypeAddr {
14 return compileToGetDecoderSlowPath(typeptr, typ)
17 index := (typeptr - typeAddr.BaseTypeAddr) >> typeAddr.AddrShift
H A Dcompile_race.go15 typeptr := uintptr(unsafe.Pointer(typ))
16 if typeptr > typeAddr.MaxTypeAddr {
17 return compileToGetDecoderSlowPath(typeptr, typ)
20 index := (typeptr - typeAddr.BaseTypeAddr) >> typeAddr.AddrShift
/dports/devel/liteide/gocode-cfcb188102ae/_testing/test.0014/
H A Dtest.go.in14 var typeptr MyPtrInt
15 aa := *typeptr
16 bb := &typeptr
/dports/databases/postgresql96-pltcl/postgresql-9.6.24/src/interfaces/ecpg/preproc/
H A Decpg.c344 struct typedefs *typeptr; in main() local
397 for (typeptr = types; typeptr != NULL;) in main()
399 struct typedefs *this = typeptr; in main()
401 free(typeptr->name); in main()
402 ECPGfree_struct_member(typeptr->struct_member_list); in main()
403 free(typeptr->type); in main()
404 typeptr = typeptr->next; in main()
/dports/databases/postgresql96-server/postgresql-9.6.24/src/interfaces/ecpg/preproc/
H A Decpg.c344 struct typedefs *typeptr; in main() local
397 for (typeptr = types; typeptr != NULL;) in main()
399 struct typedefs *this = typeptr; in main()
401 free(typeptr->name); in main()
402 ECPGfree_struct_member(typeptr->struct_member_list); in main()
403 free(typeptr->type); in main()
404 typeptr = typeptr->next; in main()
/dports/databases/postgresql96-plperl/postgresql-9.6.24/src/interfaces/ecpg/preproc/
H A Decpg.c344 struct typedefs *typeptr; in main() local
397 for (typeptr = types; typeptr != NULL;) in main()
399 struct typedefs *this = typeptr; in main()
401 free(typeptr->name); in main()
402 ECPGfree_struct_member(typeptr->struct_member_list); in main()
403 free(typeptr->type); in main()
404 typeptr = typeptr->next; in main()
/dports/databases/postgresql96-plpython/postgresql-9.6.24/src/interfaces/ecpg/preproc/
H A Decpg.c344 struct typedefs *typeptr; in main() local
397 for (typeptr = types; typeptr != NULL;) in main()
399 struct typedefs *this = typeptr; in main()
401 free(typeptr->name); in main()
402 ECPGfree_struct_member(typeptr->struct_member_list); in main()
403 free(typeptr->type); in main()
404 typeptr = typeptr->next; in main()

1234567