Home
last modified time | relevance | path

Searched refs:bstrings (Results 1 – 23 of 23) sorted by relevance

/dports/science/bagel/bagel-1.2.2/src/ci/ciutil/
H A Dciblock.h117 …CIBlock(std::shared_ptr<const StringType> astrings, std::shared_ptr<const StringType> bstrings, Da… in CIBlock() argument
118 CIBlockInfo<StringType>(astrings, bstrings, o), data_ptr_(data_ptr) { in CIBlock()
139 …e> astrings, std::shared_ptr<const StringType> bstrings) : CIBlock<DataType,StringType>(astrings, in CIBlock_alloc() argument
167 …hared_ptr<const StringType> astrings, std::shared_ptr<const StringType> bstrings, const size_t o) : in DistCIBlock_alloc() argument
168 …CIBlockInfo<StringType>(astrings, bstrings), dist_(astrings->size(), mpi__->size()), block_offset_… in DistCIBlock_alloc()
/dports/science/py-mmtf-python/mmtf-python-1.1.2/mmtf/converters/
H A Dnumpy_converters.py22 bstrings = numpy.frombuffer(in_bytes, numpy.dtype('S' + str(mmtf.utils.constants.CHAIN_LEN)))
23 return [s.decode("ascii").strip(mmtf.utils.constants.NULL_BYTE) for s in bstrings]
/dports/lang/gomacro/gomacro-2.7-304-g2f4dc7c/classic/
H A Dimport.go24 bstrings "github.com/cosmos72/gomacro/base/strings" packageName
39 path := bstrings.UnescapeString(imp.Path.Value)
H A Dliteral.go27 bstrings "github.com/cosmos72/gomacro/base/strings" packageName
91 ch, err := bstrings.UnescapeChar(str)
99 return bstrings.UnescapeString(str)
H A Dcmd.go24 bstrings "github.com/cosmos72/gomacro/base/strings" packageName
93 prefix, arg := bstrings.Split2(src[1:], ' ') // skip g.ReplCmdChar
107 _, arg := bstrings.Split2(src, ' ')
/dports/devel/libslang2/slang-2.3.2/src/
H A Dslbstr.c874 SLang_BString_Type **bstrings, *bstr; in bstrcat_cmd() local
881 bstrings = bstrings_buf; in bstrcat_cmd()
882 …else if (NULL == (bstrings = (SLang_BString_Type **)_SLcalloc (nargs, sizeof (SLang_BString_Type *… in bstrcat_cmd()
885 memset ((char *) bstrings, 0, sizeof (SLang_BString_Type *) * nargs); in bstrcat_cmd()
892 if (-1 == SLang_pop_bstring (bstrings + i)) in bstrcat_cmd()
896 bstr = join_bstrings (bstrings, nargs, NULL, 1); in bstrcat_cmd()
906 SLbstring_free (bstrings[i]); in bstrcat_cmd()
908 if (bstrings != bstrings_buf) in bstrcat_cmd()
909 SLfree ((char *) bstrings); in bstrcat_cmd()
/dports/science/py-pymol/pymol-open-source-2.4.0/modules/chempy/mmtf/
H A Dio.py147 bstrings = numpy.frombuffer(in_bytes, self.enctype)
148 return [b.decode(self.encoding) for b in bstrings]
151 bstrings = numpy.fromiter((s.encode(self.encoding) for s in strings),
153 return bstrings.tostring()
/dports/lang/seed7/seed7/lib/
H A Dbstring.s7i115 * Check if two bstrings are equal.
116 * @return TRUE if both bstrings are equal,
123 * Check if two bstrings are not equal.
124 * @return FALSE if both bstrings are equal,
138 * Compare two bstrings.
/dports/lang/gomacro/gomacro-2.7-304-g2f4dc7c/fast/debug/
H A Dcmd.go23 bstrings "github.com/cosmos72/gomacro/base/strings" packageName
69 prefix, arg := bstrings.Split2(src, ' ')
/dports/lang/gomacro/gomacro-2.7-304-g2f4dc7c/fast/
H A Dcmd.go28 bstrings "github.com/cosmos72/gomacro/base/strings" packageName
299 prefix, arg := bstrings.Split2(trim[1:], ' ') // skip g.ReplCmdChar
314 _, arg := bstrings.Split2(trim, ' ')
H A Drepl.go34 bstrings "github.com/cosmos72/gomacro/base/strings" packageName
589 return bstrings.TailIdentifier(s)
/dports/lang/gomacro/gomacro-2.7-304-g2f4dc7c/base/
H A Dglobal.go33 bstrings "github.com/cosmos72/gomacro/base/strings" packageName
273 path := bstrings.MaybeUnescapeString(lit.Value)
/dports/graphics/mupdf/mupdf-1.18.0-source/source/pdf/
H A Dpdf-font.c23 const char * const *bstrings = NULL; in pdf_load_encoding() local
27 bstrings = fz_glyph_name_from_adobe_standard; in pdf_load_encoding()
29 bstrings = fz_glyph_name_from_mac_roman; in pdf_load_encoding()
31 bstrings = fz_glyph_name_from_mac_expert; in pdf_load_encoding()
33 bstrings = fz_glyph_name_from_win_ansi; in pdf_load_encoding()
35 if (bstrings) in pdf_load_encoding()
37 estrings[i] = bstrings[i]; in pdf_load_encoding()
/dports/devel/libslang2/slang-2.3.2/modules/test/
H A Dtest_chksum.sl37 str = typecast (str, BString_Type); % test bstrings too
/dports/lang/racket/racket-8.3/share/pkgs/readline-lib/readline/
H A Dpread.rkt27 (define get-namespace-bstrings
43 (get-namespace-bstrings))))
/dports/devel/libslang2/slang-2.3.2/src/test/
H A Dbstring.sl73 failed ("Adding array of bstrings");
/dports/math/py-cypari2/cypari2-2.1.2/venv/lib/python3.7/site-packages/Cython/Compiler/
H A DParsing.py814 bstrings, ustrings, positions = [bytes_value], [unicode_value], [pos]
830 bstrings.append(next_bytes_value)
834 if kind in ('b', 'c', '') or kind == 'u' and None not in bstrings:
836 bytes_value = bytes_literal(StringEncoding.join_bytes(bstrings), s.source_encoding)
/dports/lang/cython/Cython-0.29.24/Cython/Compiler/
H A DParsing.py814 bstrings, ustrings, positions = [bytes_value], [unicode_value], [pos]
830 bstrings.append(next_bytes_value)
834 if kind in ('b', 'c', '') or kind == 'u' and None not in bstrings:
836 bytes_value = bytes_literal(StringEncoding.join_bytes(bstrings), s.source_encoding)
/dports/lang/cython/Cython-0.29.24/build/lib.dragonfly-6.3-DEVELOPMENT-x86_64-3.8/Cython/Compiler/
H A DParsing.py814 bstrings, ustrings, positions = [bytes_value], [unicode_value], [pos]
830 bstrings.append(next_bytes_value)
834 if kind in ('b', 'c', '') or kind == 'u' and None not in bstrings:
836 bytes_value = bytes_literal(StringEncoding.join_bytes(bstrings), s.source_encoding)
/dports/lang/cython/stage/usr/local/lib/python3.8/site-packages/Cython/Compiler/
H A DParsing.py814 bstrings, ustrings, positions = [bytes_value], [unicode_value], [pos]
830 bstrings.append(next_bytes_value)
834 if kind in ('b', 'c', '') or kind == 'u' and None not in bstrings:
836 bytes_value = bytes_literal(StringEncoding.join_bytes(bstrings), s.source_encoding)
/dports/lang/cython-devel/cython-2b1e743/Cython/Compiler/
H A DParsing.py822 bstrings, ustrings, positions = [bytes_value], [unicode_value], [pos]
838 bstrings.append(next_bytes_value)
842 if kind in ('b', 'c', '') or kind == 'u' and None not in bstrings:
844 bytes_value = bytes_literal(StringEncoding.join_bytes(bstrings), s.source_encoding)
/dports/math/curv/curv-0.5/ideas/language/array/
H A DBitstring38 Boolean operations (which are extended to bstrings):
/dports/lang/seed7/seed7/prg/
H A Ds7c.sd76312 writeln(combinedBStriLength <& " chars in all bstrings");