File: op_fnzbitcoun.c

package info (click to toggle)
fis-gtm 6.2-000-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 30,784 kB
  • ctags: 42,554
  • sloc: ansic: 358,483; asm: 4,847; csh: 4,574; sh: 2,261; awk: 200; makefile: 86; sed: 13
file content (53 lines) | stat: -rw-r--r-- 1,335 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/****************************************************************
 *								*
 *	Copyright 2001, 2005 Fidelity Information Services, Inc	*
 *								*
 *	This source code contains the intellectual property	*
 *	of its copyright holder(s), and is made available	*
 *	under a license.  If you do not know the terms of	*
 *	the license, please stop and do not read further.	*
 *								*
 ****************************************************************/

#include "mdef.h"
#include "op.h"
#include "mvalconv.h"

void op_fnzbitcoun(mval *dst, mval *bitstr)
{
	int str_len;
	unsigned char *byte_1, *byte_n, byte_0;
	int m, n, i;
	int bit_count;
	static unsigned char mask[8] = {128, 64, 32, 16, 8, 4, 2, 1};
	error_def(ERR_INVBITSTR);

	MV_FORCE_STR(bitstr);

	if (!bitstr->str.len)
		rts_error(VARLSTCNT(1) ERR_INVBITSTR);

	byte_1 = (unsigned char *)bitstr->str.addr;
	str_len = (bitstr->str.len - 1) * 8;
	if (7 < *byte_1)
		rts_error(VARLSTCNT(1) ERR_INVBITSTR);
	n = (str_len - *byte_1 + 7)/8 - 1;
	m = (str_len - *byte_1) % 8;
	if (0 == m)
		m = 8;
	bit_count = 0;
	for (byte_n = byte_1 + 1; byte_n <= (byte_1 + n); byte_n++)
	{
		for (i = 0; 8 > i; i++)
		{
			if (byte_0 = *byte_n & mask[i])
				bit_count++;
		}
	}
	for (i = 0; i < m; i++)
	{
		if (byte_0 = *byte_n & mask[i])
			bit_count++;
	}
	MV_FORCE_MVAL(dst, bit_count);
}