root/doc_inner/gnu_global/S/954.html

/* [<][>][^][v][top][bottom][index][help] */
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
<title>test/unit/hash/cmd.c</title>
<meta name='robots' content='noindex,nofollow' />
<meta name='generator' content='GLOBAL-6.6.5' />
<meta http-equiv='Content-Style-Type' content='text/css' />
<link rel='stylesheet' type='text/css' href='../style.css' />
</head>
<body>
<a id='TOP' name='TOP'></a><h2 class='header'><a href='../mains.html'>root</a>/<a href='../files/2933.html'>test</a>/<a href='../files/3389.html'>unit</a>/<a href='../files/3394.html'>hash</a>/cmd.c</h2>
<em class='comment'>/* [&lt;][&gt;]<a href='#L6'>[^]</a><a href='#L58'>[v]</a>[top]<a href='#BOTTOM'>[bottom]</a><a href='../mains.html'>[index]</a><a href='../help.html'>[help]</a> */</em>
<hr />
<h2 class='header'>DEFINITIONS</h2>
This source file includes following definitions.
<ol>
<li><a href='#L6' title='Defined at 6.'>hash_char2</a></li>
<li><a href='#L22' title='Defined at 22.'>hash_int2</a></li>
<li><a href='#L37' title='Defined at 37.'>hash_char2_int2</a></li>
<li><a href='#L58' title='Defined at 58.'>main</a></li>
</ol>
<hr />
<pre>
<a id='L1' name='L1'></a>   1 <em class='sharp'>#include</em> &lt;stdio.h&gt;
<a id='L2' name='L2'></a>   2 <em class='sharp'>#include</em> "<a href='2426.html'>hash.h</a>"
<a id='L3' name='L3'></a>   3 <em class='sharp'>#include</em> &lt;string.h&gt;
<a id='L4' name='L4'></a>   4 <em class='sharp'>#include</em> &lt;stdlib.h&gt;
<a id='L5' name='L5'></a>   5 
<a id='L6' name='L6'></a>   6 <strong class='reserved'>unsigned</strong> <a href='../S/954.html#L62' title='Referred from 62 in test/unit/hash/cmd.c.'>hash_char2</a>(<strong class='reserved'>int</strong> <a href='../Y/229.html' title='Multiple used in 10 places.'>tsize</a>)
<a id='L7' name='L7'></a>   7 <em class='brace'>{</em>
<a id='L8' name='L8'></a>   8     <strong class='reserved'>char</strong> *<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>[2] = <em class='brace'>{</em>"abc", "123"<em class='brace'>}</em>;
<a id='L9' name='L9'></a>   9     <strong class='reserved'>int</strong> <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>;
<a id='L10' name='L10'></a>  10     <a href='../S/2426.html#L21' title='Defined at 21 in include/hash.h.'>HKEY</a> *<a href='../Y/124.html' title='Multiple used in 41 places.'>keys</a>[2];
<a id='L11' name='L11'></a>  11 
<a id='L12' name='L12'></a>  12     <em class='comment'>/* ハッシュ共用体の設定 */</em>
<a id='L13' name='L13'></a>  13     <strong class='reserved'>for</strong>(<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a> = 0; <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a> &lt; 2; <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>++) <em class='brace'>{</em>
<a id='L14' name='L14'></a>  14         <a href='../Y/124.html' title='Multiple used in 41 places.'>keys</a>[<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>] = <a href='../Y/142.html' title='Multiple used in 7 places.'>malloc</a>(<strong class='reserved'>sizeof</strong>(<a href='../S/2426.html#L21' title='Defined at 21 in include/hash.h.'>HKEY</a>));
<a id='L15' name='L15'></a>  15         <a href='../Y/124.html' title='Multiple used in 41 places.'>keys</a>[<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>]-&gt;<a href='../Y/230.html' title='Multiple used in 26 places.'>type</a> = <a href='../S/2426.html#L8' title='Defined at 8 in include/hash.h.'>CHARS</a>;
<a id='L16' name='L16'></a>  16         <a href='../Y/124.html' title='Multiple used in 41 places.'>keys</a>[<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>]-&gt;<a href='../Y/232.html' title='Multiple used in 27 places.'>val</a>.<a href='../Y/188.html' title='Multiple used in 74 places.'>s</a> = <a href='../Y/210.html' title='Multiple used in 2 places.'>strdup</a>(<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>[<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>]);
<a id='L17' name='L17'></a>  17     <em class='brace'>}</em>
<a id='L18' name='L18'></a>  18     <em class='comment'>/* ハッシュ値を取得する */</em>
<a id='L19' name='L19'></a>  19     <strong class='reserved'>return</strong> <a href='../S/2830.html#L3' title='Defined at 3 in src/hash.c.'>hash</a>(2, <a href='../Y/124.html' title='Multiple used in 41 places.'>keys</a>, <a href='../Y/229.html' title='Multiple used in 10 places.'>tsize</a>);
<a id='L20' name='L20'></a>  20 <em class='brace'>}</em>
<a id='L21' name='L21'></a>  21 
<a id='L22' name='L22'></a>  22 <strong class='reserved'>unsigned</strong> <a href='../S/954.html#L63' title='Referred from 63 in test/unit/hash/cmd.c.'>hash_int2</a>(<strong class='reserved'>int</strong> <a href='../Y/229.html' title='Multiple used in 10 places.'>tsize</a>)
<a id='L23' name='L23'></a>  23 <em class='brace'>{</em>
<a id='L24' name='L24'></a>  24     <strong class='reserved'>int</strong> <a href='../Y/157.html' title='Multiple used in 57 places.'>num</a>[2] = <em class='brace'>{</em>19, 11<em class='brace'>}</em>, <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>;
<a id='L25' name='L25'></a>  25     <a href='../S/2426.html#L21' title='Defined at 21 in include/hash.h.'>HKEY</a> *<a href='../Y/124.html' title='Multiple used in 41 places.'>keys</a>[2];
<a id='L26' name='L26'></a>  26 
<a id='L27' name='L27'></a>  27     <em class='comment'>/* ハッシュ共用体の設定 */</em>
<a id='L28' name='L28'></a>  28     <strong class='reserved'>for</strong>(<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a> = 0; <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a> &lt; 2; <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>++) <em class='brace'>{</em>
<a id='L29' name='L29'></a>  29         <a href='../Y/124.html' title='Multiple used in 41 places.'>keys</a>[<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>] = <a href='../Y/142.html' title='Multiple used in 7 places.'>malloc</a>(<strong class='reserved'>sizeof</strong>(<a href='../S/2426.html#L21' title='Defined at 21 in include/hash.h.'>HKEY</a>));
<a id='L30' name='L30'></a>  30         <a href='../Y/124.html' title='Multiple used in 41 places.'>keys</a>[<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>]-&gt;<a href='../Y/230.html' title='Multiple used in 26 places.'>type</a> = <a href='../S/2426.html#L9' title='Defined at 9 in include/hash.h.'>INT</a>;
<a id='L31' name='L31'></a>  31         <a href='../Y/124.html' title='Multiple used in 41 places.'>keys</a>[<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>]-&gt;<a href='../Y/232.html' title='Multiple used in 27 places.'>val</a>.<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a> = <a href='../Y/157.html' title='Multiple used in 57 places.'>num</a>[<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>];
<a id='L32' name='L32'></a>  32     <em class='brace'>}</em>
<a id='L33' name='L33'></a>  33     <em class='comment'>/* ハッシュ値を取得する */</em>
<a id='L34' name='L34'></a>  34     <strong class='reserved'>return</strong> <a href='../S/2830.html#L3' title='Defined at 3 in src/hash.c.'>hash</a>(2, <a href='../Y/124.html' title='Multiple used in 41 places.'>keys</a>, <a href='../Y/229.html' title='Multiple used in 10 places.'>tsize</a>);
<a id='L35' name='L35'></a>  35 <em class='brace'>}</em>
<a id='L36' name='L36'></a>  36 
<a id='L37' name='L37'></a>  37 <strong class='reserved'>unsigned</strong> <a href='../S/954.html#L64' title='Referred from 64 in test/unit/hash/cmd.c.'>hash_char2_int2</a>(<strong class='reserved'>int</strong> <a href='../Y/229.html' title='Multiple used in 10 places.'>tsize</a>)
<a id='L38' name='L38'></a>  38 <em class='brace'>{</em>
<a id='L39' name='L39'></a>  39     <strong class='reserved'>char</strong> *<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>[2] = <em class='brace'>{</em>"abc", "123"<em class='brace'>}</em>;
<a id='L40' name='L40'></a>  40     <strong class='reserved'>int</strong> <a href='../Y/157.html' title='Multiple used in 57 places.'>num</a>[2] = <em class='brace'>{</em>19, 11<em class='brace'>}</em>, <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>, <a href='../Y/68.html' title='Multiple used in 30 places.'>cnt</a> = 0;
<a id='L41' name='L41'></a>  41     <a href='../S/2426.html#L21' title='Defined at 21 in include/hash.h.'>HKEY</a> *<a href='../Y/124.html' title='Multiple used in 41 places.'>keys</a>[4];
<a id='L42' name='L42'></a>  42 
<a id='L43' name='L43'></a>  43     <em class='comment'>/* ハッシュ共用体の設定 */</em>
<a id='L44' name='L44'></a>  44     <strong class='reserved'>for</strong>(<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a> = 0; <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a> &lt; 2; <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>++) <em class='brace'>{</em>
<a id='L45' name='L45'></a>  45         <a href='../Y/124.html' title='Multiple used in 41 places.'>keys</a>[<a href='../Y/68.html' title='Multiple used in 30 places.'>cnt</a>] = <a href='../Y/142.html' title='Multiple used in 7 places.'>malloc</a>(<strong class='reserved'>sizeof</strong>(<a href='../S/2426.html#L21' title='Defined at 21 in include/hash.h.'>HKEY</a>));
<a id='L46' name='L46'></a>  46         <a href='../Y/124.html' title='Multiple used in 41 places.'>keys</a>[<a href='../Y/68.html' title='Multiple used in 30 places.'>cnt</a>]-&gt;<a href='../Y/230.html' title='Multiple used in 26 places.'>type</a> = <a href='../S/2426.html#L8' title='Defined at 8 in include/hash.h.'>CHARS</a>;
<a id='L47' name='L47'></a>  47         <a href='../Y/124.html' title='Multiple used in 41 places.'>keys</a>[<a href='../Y/68.html' title='Multiple used in 30 places.'>cnt</a>++]-&gt;<a href='../Y/232.html' title='Multiple used in 27 places.'>val</a>.<a href='../Y/188.html' title='Multiple used in 74 places.'>s</a> = <a href='../Y/210.html' title='Multiple used in 2 places.'>strdup</a>(<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>[<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>]);
<a id='L48' name='L48'></a>  48     <em class='brace'>}</em>
<a id='L49' name='L49'></a>  49     <strong class='reserved'>for</strong>(<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a> = 0; <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a> &lt; 2; <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>++) <em class='brace'>{</em>
<a id='L50' name='L50'></a>  50         <a href='../Y/124.html' title='Multiple used in 41 places.'>keys</a>[<a href='../Y/68.html' title='Multiple used in 30 places.'>cnt</a>] = <a href='../Y/142.html' title='Multiple used in 7 places.'>malloc</a>(<strong class='reserved'>sizeof</strong>(<a href='../S/2426.html#L21' title='Defined at 21 in include/hash.h.'>HKEY</a>));
<a id='L51' name='L51'></a>  51         <a href='../Y/124.html' title='Multiple used in 41 places.'>keys</a>[<a href='../Y/68.html' title='Multiple used in 30 places.'>cnt</a>]-&gt;<a href='../Y/230.html' title='Multiple used in 26 places.'>type</a> = <a href='../S/2426.html#L9' title='Defined at 9 in include/hash.h.'>INT</a>;
<a id='L52' name='L52'></a>  52         <a href='../Y/124.html' title='Multiple used in 41 places.'>keys</a>[<a href='../Y/68.html' title='Multiple used in 30 places.'>cnt</a>++]-&gt;<a href='../Y/232.html' title='Multiple used in 27 places.'>val</a>.<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a> = <a href='../Y/157.html' title='Multiple used in 57 places.'>num</a>[<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>];
<a id='L53' name='L53'></a>  53     <em class='brace'>}</em>
<a id='L54' name='L54'></a>  54     <em class='comment'>/* ハッシュ値を取得する */</em>
<a id='L55' name='L55'></a>  55     <strong class='reserved'>return</strong> <a href='../S/2830.html#L3' title='Defined at 3 in src/hash.c.'>hash</a>(4, <a href='../Y/124.html' title='Multiple used in 41 places.'>keys</a>, <a href='../Y/229.html' title='Multiple used in 10 places.'>tsize</a>);
<a id='L56' name='L56'></a>  56 <em class='brace'>}</em>
<a id='L57' name='L57'></a>  57 
<a id='L58' name='L58'></a>  58 <strong class='reserved'>int</strong> main()
<a id='L59' name='L59'></a>  59 <em class='brace'>{</em>
<a id='L60' name='L60'></a>  60     <strong class='reserved'>int</strong> <a href='../Y/229.html' title='Multiple used in 10 places.'>tsize</a> = 31;
<a id='L61' name='L61'></a>  61 
<a id='L62' name='L62'></a>  62     <a href='../Y/176.html' title='Multiple used in 32 places.'>printf</a>("HASH VALUE: %d\n", <a href='../S/954.html#L6' title='Defined at 6 in test/unit/hash/cmd.c.'>hash_char2</a>(<a href='../Y/229.html' title='Multiple used in 10 places.'>tsize</a>));
<a id='L63' name='L63'></a>  63     <a href='../Y/176.html' title='Multiple used in 32 places.'>printf</a>("HASH VALUE: %d\n", <a href='../S/954.html#L22' title='Defined at 22 in test/unit/hash/cmd.c.'>hash_int2</a>(<a href='../Y/229.html' title='Multiple used in 10 places.'>tsize</a>));
<a id='L64' name='L64'></a>  64     <a href='../Y/176.html' title='Multiple used in 32 places.'>printf</a>("HASH VALUE: %d\n", <a href='../S/954.html#L37' title='Defined at 37 in test/unit/hash/cmd.c.'>hash_char2_int2</a>(<a href='../Y/229.html' title='Multiple used in 10 places.'>tsize</a>));
<a id='L65' name='L65'></a>  65     <strong class='reserved'>return</strong> 0;
<a id='L66' name='L66'></a>  66 <em class='brace'>}</em>
</pre>
<hr />
<a id='BOTTOM' name='BOTTOM'></a>
<em class='comment'>/* [&lt;][&gt;]<a href='#L6'>[^]</a><a href='#L58'>[v]</a><a href='#TOP'>[top]</a>[bottom]<a href='../mains.html'>[index]</a><a href='../help.html'>[help]</a> */</em>
</body>
</html>

/* [<][>][^][v][top][bottom][index][help] */