Home
last modified time | relevance | path

Searched refs:hd1 (Results 1 – 25 of 640) sorted by relevance

12345678910>>...26

/dports/games/gnugo/gnugo-3.8/engine/
H A Dhash.h117 #define hashdata_is_equal(hd1, hd2) \ argument
120 #define hashdata_is_smaller(hd1, hd2) \ argument
121 ((hd1).hashval[0] < (hd2).hashval[0])
123 #define hashdata_xor(hd1, hd2) \ argument
124 (hd1).hashval[0] ^= (hd2).hashval[0]
128 #define hashdata_is_equal(hd1, hd2) \ argument
132 #define hashdata_is_smaller(hd1, hd2) \ argument
137 #define hashdata_xor(hd1, hd2) \ argument
148 #define hashdata_is_equal(hd1, hd2) \ argument
151 #define hashdata_is_smaller(hd1, hd2) \ argument
[all …]
/dports/math/pdal/PDAL-2.3.0/plugins/i3s/lepcc/src/
H A DFlagBytes.cpp98 Header1 hd1; in Encode() local
100 hd1.numPoints = nElem; in Encode()
102 hd1.minValue = m_minValue; in Encode()
104 memcpy(ptr, &hd1, sizeof(hd1)); in Encode()
105 ptr += sizeof(hd1); in Encode()
155 Header1 hd1; in GetBlobSize() local
181 Header1 hd1; in GetNumPointsFromHeader() local
186 nPts = hd1.numPoints; in GetNumPointsFromHeader()
206 Header1 hd1; in Decode() local
221 uint32 nElem = hd1.numPoints; in Decode()
[all …]
H A DIntensity.cpp90 Header1 hd1; in Encode() local
93 hd1.numPoints = nElem; in Encode()
94 hd1.bpp = (Byte)m_bpp; in Encode()
96 memcpy(ptr, &hd1, sizeof(hd1)); in Encode()
97 ptr += sizeof(hd1); in Encode()
167 Header1 hd1; in GetBlobSize() local
193 Header1 hd1; in GetNumPointsFromHeader() local
198 nPts = hd1.numPoints; in GetNumPointsFromHeader()
218 Header1 hd1; in Decode() local
241 int bpp = hd1.bpp; in Decode()
[all …]
H A DClusterRGB.cpp246 Header1 hd1; in Encode() local
253 memcpy(ptr, &hd1, sizeof(hd1)); in Encode()
254 ptr += sizeof(hd1); in Encode()
279 if (bufferSize < (int64)(headerSize + hd1.numColorsInColormap * 3 + hd1.numPoints * 1)) in Encode()
328 Header1 hd1; in GetBlobSize() local
354 Header1 hd1; in GetNumPointsFromHeader() local
359 nPts = hd1.numPoints; in GetNumPointsFromHeader()
379 Header1 hd1; in Decode() local
396 if (hd1.numPoints > nPtsInOut) in Decode()
401 int nBytes = hd1.numPoints * 3; in Decode()
[all …]
H A DLEPCC.cpp106 Header1 hd1; in Encode() local
108 hd1.extent3D = m_extent3D; in Encode()
112 memcpy(ptr, &hd1, sizeof(hd1)); in Encode()
113 ptr += sizeof(hd1); in Encode()
150 Header1 hd1; in GetBlobSize() local
176 Header1 hd1; in GetNumPointsFromHeader() local
181 nPts = hd1.numPoints; in GetNumPointsFromHeader()
192 Header1 hd1; in GetExtent3DFromHeader() local
197 ext = hd1.extent3D; in GetExtent3DFromHeader()
217 Header1 hd1; in Decode() local
[all …]
/dports/security/gnupg/gnupg-2.3.3/g10/
H A Dt-keydb-get-keyblock.c31 KEYDB_HANDLE hd1; in do_test() local
50 hd1 = keydb_new (ctrl); in do_test()
51 if (!hd1) in do_test()
59 rc = keydb_search (hd1, &desc1, 1, NULL); in do_test()
63 rc = keydb_get_keyblock (hd1, &kb1); in do_test()
66 keydb_release (hd1); in do_test()
H A Dt-keydb.c29 KEYDB_HANDLE hd1, hd2; in do_test() local
46 hd1 = keydb_new (ctrl); in do_test()
47 if (!hd1) in do_test()
58 rc = keydb_search (hd1, &desc1, 1, NULL); in do_test()
76 rc = keydb_get_keyblock (hd1, &kb1); in do_test()
104 keydb_release (hd1); in do_test()
/dports/math/scilab/scilab-6.1.1/scilab/modules/cacsd/tests/unit_tests/
H A Dfreqplots.dia.ref13 hd1=dscr(h1,0.01);
27 list([hd;hd1]),..
28 list([hd;hd1],0.01,100),..
29 list([hd;hd1],0.01,100,["hd";"hd1"]),..
30 list(zpk([hd;hd1]),0.01,100,["hd";"hd1"]),..
H A Dfreqplots.tst14 hd1=dscr(h1,0.01);
29 list([hd;hd1]),..
30 list([hd;hd1],0.01,100),..
31 list([hd;hd1],0.01,100,["hd";"hd1"]),..
32 list(zpk([hd;hd1]),0.01,100,["hd";"hd1"]),..
/dports/www/aria2/aria2-1.36.0/test/
H A DHttpHeaderProcessorTest.cc52 std::string hd1 = "HTTP/1.1 200 OK\r\n"; in testParse1() local
53 CPPUNIT_ASSERT(!proc.parse(hd1)); in testParse1()
60 std::string hd1 = "HTTP/1.1 200 OK\n"; in testParse2() local
61 CPPUNIT_ASSERT(!proc.parse(hd1)); in testParse2()
94 std::string hd1 = "HTTP/1.1 200 OK\r\n" in testGetLastBytesProcessed() local
96 CPPUNIT_ASSERT(proc.parse(hd1)); in testGetLastBytesProcessed()
113 std::string hd1(&x[0], &x[sizeof(x) - 1]); in testGetLastBytesProcessed_nullChar() local
114 CPPUNIT_ASSERT(proc.parse(hd1)); in testGetLastBytesProcessed_nullChar()
234 std::string hd1 = "HTTP/1.1 200 OK\r\n"; in testBeyondLimit() local
237 proc.parse(hd1); in testBeyondLimit()
/dports/sysutils/syslinux/syslinux-6.03/core/legacynet/
H A Ddnsresolv.c226 struct dnshdr *hd1 = (struct dnshdr *)DNSSendBuf; in dns_resolv() local
255 hd1->id++; /* New query ID */ in dns_resolv()
256 hd1->flags = htons(0x0100); /* Recursion requested */ in dns_resolv()
257 hd1->qdcount = htons(1); /* One question */ in dns_resolv()
258 hd1->ancount = 0; /* No answers */ in dns_resolv()
259 hd1->nscount = 0; /* No NS */ in dns_resolv()
260 hd1->arcount = 0; /* No AR */ in dns_resolv()
312 } while (err || udp_read.status || hd2->id != hd1->id); in dns_resolv()
/dports/graphics/bonzomatic/Bonzomatic-2021-03-07/external/scintilla/src/
H A DRESearch.cxx319 static int GetHexaChar(unsigned char hd1, unsigned char hd2) { in GetHexaChar() argument
321 if (hd1 >= '0' && hd1 <= '9') { in GetHexaChar()
322 hexValue += 16 * (hd1 - '0'); in GetHexaChar()
323 } else if (hd1 >= 'A' && hd1 <= 'F') { in GetHexaChar()
324 hexValue += 16 * (hd1 - 'A' + 10); in GetHexaChar()
325 } else if (hd1 >= 'a' && hd1 <= 'f') { in GetHexaChar()
326 hexValue += 16 * (hd1 - 'a' + 10); in GetHexaChar()
377 unsigned char hd1 = *(pattern + 1); in GetBackslashExpression() local
379 int hexValue = GetHexaChar(hd1, hd2); in GetBackslashExpression()
/dports/deskutils/presage/presage-0.9.1/apps/gtk/gprompter/scintilla/src/
H A DRESearch.cxx320 static int GetHexaChar(unsigned char hd1, unsigned char hd2) { in GetHexaChar() argument
322 if (hd1 >= '0' && hd1 <= '9') { in GetHexaChar()
323 hexValue += 16 * (hd1 - '0'); in GetHexaChar()
324 } else if (hd1 >= 'A' && hd1 <= 'F') { in GetHexaChar()
325 hexValue += 16 * (hd1 - 'A' + 10); in GetHexaChar()
326 } else if (hd1 >= 'a' && hd1 <= 'f') { in GetHexaChar()
327 hexValue += 16 * (hd1 - 'a' + 10); in GetHexaChar()
378 unsigned char hd1 = *(pattern + 1); in GetBackslashExpression() local
380 int hexValue = GetHexaChar(hd1, hd2); in GetBackslashExpression()
/dports/x11-toolkits/wxgtk31/wxWidgets-3.1.5/src/stc/scintilla/src/
H A DRESearch.cxx321 static int GetHexaChar(unsigned char hd1, unsigned char hd2) { in GetHexaChar() argument
323 if (hd1 >= '0' && hd1 <= '9') { in GetHexaChar()
324 hexValue += 16 * (hd1 - '0'); in GetHexaChar()
325 } else if (hd1 >= 'A' && hd1 <= 'F') { in GetHexaChar()
326 hexValue += 16 * (hd1 - 'A' + 10); in GetHexaChar()
327 } else if (hd1 >= 'a' && hd1 <= 'f') { in GetHexaChar()
328 hexValue += 16 * (hd1 - 'a' + 10); in GetHexaChar()
379 unsigned char hd1 = *(pattern + 1); in GetBackslashExpression() local
381 int hexValue = GetHexaChar(hd1, hd2); in GetBackslashExpression()
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/
H A Dnested-ty-params.stderr6 LL | fn hd1(w: [U]) -> U { return w[0]; }
9 | help: try using a local generic parameter instead: `hd1<U>`
16 LL | fn hd1(w: [U]) -> U { return w[0]; }
19 | help: try using a local generic parameter instead: `hd1<U>`
/dports/graphics/cfdg/cfdg-3.3_1/src-scintilla/src/
H A DRESearch.cxx317 static int GetHexaChar(unsigned char hd1, unsigned char hd2) { in GetHexaChar() argument
319 if (hd1 >= '0' && hd1 <= '9') { in GetHexaChar()
320 hexValue += 16 * (hd1 - '0'); in GetHexaChar()
321 } else if (hd1 >= 'A' && hd1 <= 'F') { in GetHexaChar()
322 hexValue += 16 * (hd1 - 'A' + 10); in GetHexaChar()
323 } else if (hd1 >= 'a' && hd1 <= 'f') { in GetHexaChar()
324 hexValue += 16 * (hd1 - 'a' + 10); in GetHexaChar()
375 const unsigned char hd1 = *(pattern + 1); in GetBackslashExpression() local
377 const int hexValue = GetHexaChar(hd1, hd2); in GetBackslashExpression()
/dports/editors/fxite/fxite-FXITE-0_92/fxscintilla/
H A DRESearch.cxx328 static int GetHexaChar(unsigned char hd1, unsigned char hd2) { in GetHexaChar() argument
330 if (hd1 >= '0' && hd1 <= '9') { in GetHexaChar()
331 hexValue += 16 * (hd1 - '0'); in GetHexaChar()
332 } else if (hd1 >= 'A' && hd1 <= 'F') { in GetHexaChar()
333 hexValue += 16 * (hd1 - 'A' + 10); in GetHexaChar()
334 } else if (hd1 >= 'a' && hd1 <= 'f') { in GetHexaChar()
335 hexValue += 16 * (hd1 - 'a' + 10); in GetHexaChar()
384 unsigned char hd1 = *(pattern + 1); in GetBackslashExpression() local
386 int hexValue = GetHexaChar(hd1, hd2); in GetBackslashExpression()
/dports/x11-toolkits/scintilla/scintilla/src/
H A DRESearch.cxx317 static int GetHexaChar(unsigned char hd1, unsigned char hd2) noexcept { in GetHexaChar() argument
319 if (hd1 >= '0' && hd1 <= '9') { in GetHexaChar()
320 hexValue += 16 * (hd1 - '0'); in GetHexaChar()
321 } else if (hd1 >= 'A' && hd1 <= 'F') { in GetHexaChar()
322 hexValue += 16 * (hd1 - 'A' + 10); in GetHexaChar()
323 } else if (hd1 >= 'a' && hd1 <= 'f') { in GetHexaChar()
324 hexValue += 16 * (hd1 - 'a' + 10); in GetHexaChar()
375 const unsigned char hd1 = *(pattern + 1); in GetBackslashExpression() local
377 const int hexValue = GetHexaChar(hd1, hd2); in GetBackslashExpression()
/dports/x11-toolkits/wxgtk30/wxWidgets-3.0.5.1/src/stc/scintilla/src/
H A DRESearch.cxx337 static int GetHexaChar(unsigned char hd1, unsigned char hd2) { in GetHexaChar() argument
339 if (hd1 >= '0' && hd1 <= '9') { in GetHexaChar()
340 hexValue += 16 * (hd1 - '0'); in GetHexaChar()
341 } else if (hd1 >= 'A' && hd1 <= 'F') { in GetHexaChar()
342 hexValue += 16 * (hd1 - 'A' + 10); in GetHexaChar()
343 } else if (hd1 >= 'a' && hd1 <= 'f') { in GetHexaChar()
344 hexValue += 16 * (hd1 - 'a' + 10); in GetHexaChar()
393 unsigned char hd1 = *(pattern + 1); in GetBackslashExpression() local
395 int hexValue = GetHexaChar(hd1, hd2); in GetBackslashExpression()
/dports/databases/sqlitebrowser/sqlitebrowser-3.12.1/libs/qscintilla/src/
H A DRESearch.cpp317 static int GetHexaChar(unsigned char hd1, unsigned char hd2) { in GetHexaChar() argument
319 if (hd1 >= '0' && hd1 <= '9') { in GetHexaChar()
320 hexValue += 16 * (hd1 - '0'); in GetHexaChar()
321 } else if (hd1 >= 'A' && hd1 <= 'F') { in GetHexaChar()
322 hexValue += 16 * (hd1 - 'A' + 10); in GetHexaChar()
323 } else if (hd1 >= 'a' && hd1 <= 'f') { in GetHexaChar()
324 hexValue += 16 * (hd1 - 'a' + 10); in GetHexaChar()
375 const unsigned char hd1 = *(pattern + 1); in GetBackslashExpression() local
377 const int hexValue = GetHexaChar(hd1, hd2); in GetBackslashExpression()
/dports/devel/codequery/codequery-0.24.0/scintilla/src/
H A DRESearch.cxx317 static int GetHexaChar(unsigned char hd1, unsigned char hd2) { in GetHexaChar() argument
319 if (hd1 >= '0' && hd1 <= '9') { in GetHexaChar()
320 hexValue += 16 * (hd1 - '0'); in GetHexaChar()
321 } else if (hd1 >= 'A' && hd1 <= 'F') { in GetHexaChar()
322 hexValue += 16 * (hd1 - 'A' + 10); in GetHexaChar()
323 } else if (hd1 >= 'a' && hd1 <= 'f') { in GetHexaChar()
324 hexValue += 16 * (hd1 - 'a' + 10); in GetHexaChar()
375 const unsigned char hd1 = *(pattern + 1); in GetBackslashExpression() local
377 const int hexValue = GetHexaChar(hd1, hd2); in GetBackslashExpression()
/dports/devel/codeblocks/codeblocks-20.03/src/sdk/wxscintilla/src/scintilla/src/
H A DRESearch.cxx321 static int GetHexaChar(unsigned char hd1, unsigned char hd2) { in GetHexaChar() argument
323 if (hd1 >= '0' && hd1 <= '9') { in GetHexaChar()
324 hexValue += 16 * (hd1 - '0'); in GetHexaChar()
325 } else if (hd1 >= 'A' && hd1 <= 'F') { in GetHexaChar()
326 hexValue += 16 * (hd1 - 'A' + 10); in GetHexaChar()
327 } else if (hd1 >= 'a' && hd1 <= 'f') { in GetHexaChar()
328 hexValue += 16 * (hd1 - 'a' + 10); in GetHexaChar()
379 const unsigned char hd1 = *(pattern + 1); in GetBackslashExpression() local
381 const int hexValue = GetHexaChar(hd1, hd2); in GetBackslashExpression()
/dports/devel/geany-legacy/geany-1.37.1/scintilla/src/
H A DRESearch.cxx317 static int GetHexaChar(unsigned char hd1, unsigned char hd2) noexcept { in GetHexaChar() argument
319 if (hd1 >= '0' && hd1 <= '9') { in GetHexaChar()
320 hexValue += 16 * (hd1 - '0'); in GetHexaChar()
321 } else if (hd1 >= 'A' && hd1 <= 'F') { in GetHexaChar()
322 hexValue += 16 * (hd1 - 'A' + 10); in GetHexaChar()
323 } else if (hd1 >= 'a' && hd1 <= 'f') { in GetHexaChar()
324 hexValue += 16 * (hd1 - 'a' + 10); in GetHexaChar()
375 const unsigned char hd1 = *(pattern + 1); in GetBackslashExpression() local
377 const int hexValue = GetHexaChar(hd1, hd2); in GetBackslashExpression()
/dports/devel/geany/geany-1.38/scintilla/src/
H A DRESearch.cxx317 static int GetHexaChar(unsigned char hd1, unsigned char hd2) noexcept { in GetHexaChar() argument
319 if (hd1 >= '0' && hd1 <= '9') { in GetHexaChar()
320 hexValue += 16 * (hd1 - '0'); in GetHexaChar()
321 } else if (hd1 >= 'A' && hd1 <= 'F') { in GetHexaChar()
322 hexValue += 16 * (hd1 - 'A' + 10); in GetHexaChar()
323 } else if (hd1 >= 'a' && hd1 <= 'f') { in GetHexaChar()
324 hexValue += 16 * (hd1 - 'a' + 10); in GetHexaChar()
375 const unsigned char hd1 = *(pattern + 1); in GetBackslashExpression() local
377 const int hexValue = GetHexaChar(hd1, hd2); in GetBackslashExpression()
/dports/x11-toolkits/fxscintilla/fxscintilla-2.28.0/src/
H A DRESearch.cxx337 static int GetHexaChar(unsigned char hd1, unsigned char hd2) { in GetHexaChar() argument
339 if (hd1 >= '0' && hd1 <= '9') { in GetHexaChar()
340 hexValue += 16 * (hd1 - '0'); in GetHexaChar()
341 } else if (hd1 >= 'A' && hd1 <= 'F') { in GetHexaChar()
342 hexValue += 16 * (hd1 - 'A' + 10); in GetHexaChar()
343 } else if (hd1 >= 'a' && hd1 <= 'f') { in GetHexaChar()
344 hexValue += 16 * (hd1 - 'a' + 10); in GetHexaChar()
393 unsigned char hd1 = *(pattern + 1); in GetBackslashExpression() local
395 int hexValue = GetHexaChar(hd1, hd2); in GetBackslashExpression()

12345678910>>...26