Home
last modified time | relevance | path

Searched refs:hexit (Results 1 – 25 of 67) sorted by last modified time

123

/dports/www/thttpd/thttpd-2.29/
H A Dlibhttpd.c138 static int hexit( char c );
1222 hexit( char c ) in hexit() function
1244 *to = hexit( from[1] ) * 16 + hexit( from[2] ); in strdecode()
/dports/sysutils/deltarpm/deltarpm-3.6/
H A Ddrpmsync1209 sub hexit {
1495 …$data = "${replyid}0001FISO".sprintf("%08x", length($spath_info)).hexit(length($data) + $flen).$sp…
1514 …$data = "${replyid}0001FILE".sprintf("%08x", length($spath_info)).hexit(length($data) + $flen).$sp…
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/llvm/test/Transforms/LoopVectorize/
H A Dcalloc.ll5 ;CHECK: hexit
9 define noalias i8* @hexit(i8* nocapture %bytes, i64 %length) nounwind uwtable ssp {
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/test/Transforms/LoopVectorize/
H A Dcalloc.ll5 ;CHECK: hexit
9 define noalias i8* @hexit(i8* nocapture %bytes, i64 %length) nounwind uwtable ssp {
/dports/graphics/llvm-mesa/llvm-13.0.1.src/test/Transforms/LoopVectorize/
H A Dcalloc.ll5 ;CHECK: hexit
9 define noalias i8* @hexit(i8* nocapture %bytes, i64 %length) nounwind uwtable ssp {
/dports/devel/llvm13/llvm-project-13.0.1.src/llvm/test/Transforms/LoopVectorize/
H A Dcalloc.ll5 ;CHECK: hexit
9 define noalias i8* @hexit(i8* nocapture %bytes, i64 %length) nounwind uwtable ssp {
/dports/science/jmol/jmol-14.32.7/src/org/jmol/util/
H A DEscape.java597 int hexit = getHexitValue(chT); in unescapeUnicode() local
598 if (hexit < 0) in unescapeUnicode()
601 unicode += hexit; in unescapeUnicode()
/dports/science/jmol/jmol-14.32.7/src/org/jmol/script/
H A DScriptCompiler.java2670 int hexit = Escape.getHexitValue(chT); in unescapeString() local
2671 if (hexit < 0) in unescapeString()
2674 unicode += hexit; in unescapeString()
/dports/editors/neovim/neovim-0.6.1/src/nvim/
H A Dsha256.c268 static char hexit[SHA256_BUFFER_SIZE + 1]; // buf size + NULL in sha256_bytes() local
282 snprintf(hexit + j * SHA_STEP, SHA_STEP + 1, "%02x", sha256sum[j]); in sha256_bytes()
284 hexit[sizeof(hexit) - 1] = '\0'; in sha256_bytes()
285 return hexit; in sha256_bytes()
313 const char *hexit; in sha256_self_test() local
325 hexit = sha256_bytes((uint8_t *)sha_self_test_msg[i], in sha256_self_test()
328 STRCPY(output, hexit); in sha256_self_test()
/dports/emulators/dosbox-staging/dosbox-staging-0.78.0/docs/upstream/
H A DChangeLog268 - Several general DOS fixes. (fixes nba95, hexit and various other games)
H A DNEWS208 - Several general DOS fixes. (fixes nba95, hexit and various other games)
/dports/editors/vim/vim-8.2.3745/src/
H A Dsha256.c278 static char_u hexit[65]; in sha256_bytes() local
290 sprintf((char *)hexit + j * 2, "%02x", sha256sum[j]); in sha256_bytes()
291 hexit[sizeof(hexit) - 1] = '\0'; in sha256_bytes()
292 return hexit; in sha256_bytes()
343 char_u *hexit; in sha256_self_test() local
354 hexit = sha256_bytes((char_u *)sha_self_test_msg[i], in sha256_self_test()
357 STRCPY(output, hexit); in sha256_self_test()
/dports/net/yaz/yaz-5.31.1/src/
H A Dwrbuf_sha1.c194 int wrbuf_sha1_write(WRBUF b, const char *cp, size_t sz, int hexit) in wrbuf_sha1_write() argument
203 if (hexit) in wrbuf_sha1_write()
214 int wrbuf_sha1_puts(WRBUF b, const char *cp, int hexit) in wrbuf_sha1_puts() argument
216 return wrbuf_sha1_write(b, cp, strlen(cp), hexit); in wrbuf_sha1_puts()
/dports/net/yaz/yaz-5.31.1/src/yaz/
H A Dwrbuf.h304 int wrbuf_sha1_write(WRBUF b, const char *cp, size_t sz, int hexit);
314 int wrbuf_sha1_puts(WRBUF b, const char *cp, int hexit);
/dports/math/universal/universal-3.48/include/universal/internal/bitblock/
H A Dbitblock.hpp670 unsigned int hexit; in to_hex() local
673 hexit = bits[0]; in to_hex()
676 hexit = static_cast<unsigned int>((bits[1] << 1u) + bits[0]); in to_hex()
679 hexit = static_cast<unsigned int>((bits[2] << 2u) + (bits[1] << 1u) + bits[0]); in to_hex()
682 hexit = static_cast<unsigned int>((bits[3] << 3u) + (bits[2] << 2u) + (bits[1] << 1u) + bits[0]); in to_hex()
685 str[maxHexDigits - 1 - i] = hexits[hexit]; in to_hex()
H A Dbitblock_v2.hpp556 unsigned int hexit; in to_hex() local
559 hexit = bits[0]; in to_hex()
562 hexit = (bits[1] << 1) + bits[0]; in to_hex()
565 hexit = (bits[2] << 2) + (bits[1] << 1) + bits[0]; in to_hex()
568 hexit = (bits[3] << 3) + (bits[2] << 2) + (bits[1] << 1) + bits[0]; in to_hex()
571 str[maxHexDigits - 1 - i] = hexits[hexit]; in to_hex()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/llvm/test/Transforms/LoopVectorize/
H A Dcalloc.ll5 ;CHECK: hexit
9 define noalias i8* @hexit(i8* nocapture %bytes, i64 %length) nounwind uwtable ssp {
/dports/lang/sagittarius-scheme/sagittarius-0.9.8/sitelib/text/sql/
H A Dsimplifier.scm95 (define hexit (string->char-set "1234567890abcdefABCDEF")) unknown
111 ((char-set-contains? hexit ch)
136 (char-set-contains? hexit e) (char-whitespace? e))
/dports/lang/micropython/axtls-531cab9/httpd/
H A Dproc.c50 static int hexit(char c);
921 v = hexit(s[0])*16 + hexit(s[1]); in urldecode()
941 static int hexit(char c) in hexit() function
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/llvm/test/Transforms/LoopVectorize/
H A Dcalloc.ll5 ;CHECK: hexit
9 define noalias i8* @hexit(i8* nocapture %bytes, i64 %length) nounwind uwtable ssp {
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/test/Transforms/LoopVectorize/
H A Dcalloc.ll5 ;CHECK: hexit
9 define noalias i8* @hexit(i8* nocapture %bytes, i64 %length) nounwind uwtable ssp {
/dports/lang/ghc/ghc-8.10.7/compiler/parser/
H A DLexer.x.source154 $hexit = [$decdigit A-F a-f]
178 @hexadecimal = $hexit(@numspc $hexit)*
/dports/lang/ghc/ghc-8.10.7/compiler/cmm/
H A DCmmLex.x.source43 $hexit = [$digit A-F a-f]
58 @hexadecimal = $hexit+
63 @escape = \\ ([abfnrt\\\'\"\?] | x $hexit{1,2} | $octit{1,3})
/dports/games/tanglet/tanglet-1.6.0/wordlists/
H A Dcs38909 hexit
/dports/games/wolfpack/empire-4.4.1/src/util/
H A Dfairland.c810 struct hexagon_iter hexit; in xzone_around_sector() local
816 hexagon_first(&hexit, x, y, d, &x1, &y1); in xzone_around_sector()
823 } while (hexagon_next(&hexit, &x1, &y1)); in xzone_around_sector()
1319 struct hexagon_iter hexit; in elevate_prep() local
1337 hexagon_first(&hexit, x0, y0, d, &x1, &y1); in elevate_prep()
1343 } while (hexagon_next(&hexit, &x1, &y1)); in elevate_prep()

123