Home
last modified time | relevance | path

Searched refs:sindex (Results 1 – 10 of 10) sorted by relevance

/external/iptables/extensions/
Dlibxt_string.c94 int i=0, slen, sindex=0, schar; in parse_hex_string() local
131 info->pattern[sindex] = s[i+1]; in parse_hex_string()
153 info->pattern[sindex] = (char) schar; in parse_hex_string()
159 info->pattern[sindex] = s[i]; in parse_hex_string()
162 if (sindex > XT_STRING_MAX_PATTERN_SIZE) in parse_hex_string()
164 sindex++; in parse_hex_string()
166 info->patlen = sindex; in parse_hex_string()
/external/tcpdump/
Dprint-smb.c69 int sindex; in smbfind() local
71 for (sindex = 0; list[sindex].name; sindex++) in smbfind()
72 if (list[sindex].id == id) in smbfind()
73 return(&list[sindex]); in smbfind()
81 int sindex; in smbfindint() local
83 for (sindex = 0; list[sindex].name; sindex++) in smbfindint()
84 if (list[sindex].id == id) in smbfindint()
85 return(&list[sindex]); in smbfindint()
/external/squashfs-tools/kernel-2.4/fs/squashfs/
Dsquashfs2_0.c444 struct squashfs_dir_index_2 sindex; in get_dir_index_using_offset() local
445 squashfs_get_cached_block(s, (char *) &sindex, in get_dir_index_using_offset()
447 sizeof(sindex), &index_start, in get_dir_index_using_offset()
449 SQUASHFS_SWAP_DIR_INDEX_2(&index, &sindex); in get_dir_index_using_offset()
494 struct squashfs_dir_index_2 sindex; in get_dir_index_using_name() local
495 squashfs_get_cached_block(s, (char *) &sindex, in get_dir_index_using_name()
497 sizeof(sindex), &index_start, in get_dir_index_using_name()
499 SQUASHFS_SWAP_DIR_INDEX_2(index, &sindex); in get_dir_index_using_name()
Dinode.c1653 struct squashfs_dir_index sindex; in get_dir_index_using_offset() local
1654 squashfs_get_cached_block(s, (char *) &sindex, in get_dir_index_using_offset()
1656 sizeof(sindex), &index_start, in get_dir_index_using_offset()
1658 SQUASHFS_SWAP_DIR_INDEX(&index, &sindex); in get_dir_index_using_offset()
1703 struct squashfs_dir_index sindex; in get_dir_index_using_name() local
1704 squashfs_get_cached_block(s, (char *) &sindex, in get_dir_index_using_name()
1706 sizeof(sindex), &index_start, in get_dir_index_using_name()
1708 SQUASHFS_SWAP_DIR_INDEX(index, &sindex); in get_dir_index_using_name()
/external/ImageMagick/MagickCore/
Dtoken.c789 static ssize_t sindex(int c,const char *string) in sindex() function
851 i=sindex(c,break_set); in Tokenizer()
873 i=sindex(c,quote); in Tokenizer()
906 i=sindex(c,white); in Tokenizer()
/external/one-true-awk/
Dproctab.c149 sindex, /* INDEX */
Dproto.h166 extern Cell *sindex(Node **, int);
Drun.c797 Cell *sindex(Node **a, int nnn) /* index(a[0], a[1]) */ in sindex() function
/external/emma/core/java12/com/vladium/util/args/
DOptsParser.java474 int sindex = Integer.MAX_VALUE; in getOptNameAndValue() local
479 if ((index > 0) && (index < sindex)) in getOptNameAndValue()
482 sindex = index; in getOptNameAndValue()
488 nv [0] = name.substring (0, sindex); in getOptNameAndValue()
489 nv [1] = name.substring (sindex + 1); in getOptNameAndValue()
/external/webrtc/webrtc/p2p/base/
Drelayport.cc116 void SetServerIndex(size_t sindex) { server_index_ = sindex; } in SetServerIndex() argument