Searched refs:first (Results 1 - 25 of 9193) sorted by last modified time

1234567891011>>

/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/yaffs2/yaffs2/
H A Ddevextras.h159 * @head: the place to add it in the first list.
164 struct list_head *first = list->next; local
166 if (first != list) {
170 first->prev = head;
171 head->next = first;
/external/zlib/
H A DAndroid.mk72 # up needing to drag in most of the other files anyway. So this is a first
/external/zlib/src/contrib/blast/
H A Dblast.c53 int first; /* true to check distances (for first 4K) */ member in struct:state
118 * - The first code for the shortest length is all ones. Subsequent codes of
129 int first; /* first code of length len */ local
131 int index; /* index of first code of length len in symbol table */
138 code = first = index = 0;
146 if (code < first + count) { /* if length len, return symbol */
149 return h->symbol[index + (code - first)];
152 first
[all...]
/external/zlib/src/contrib/masmx64/
H A Dgvmat64.asm74 ;scanstart equ rsp + xx - LocalVarsSize ; first two bytes of string ; stored in r12w
115 ; in the deflate_state structure since the asm code was first written
133 ; in zlib in the deflate_state structure since the asm code was first written
372 ;;; be spent in the first ten instructions.
420 ;;; We already know at this point that the first three bytes of the
/external/zlib/src/contrib/masmx86/
H A Dmatch686.asm75 ; in zlib in the deflate_state structure since the asm code was first written
124 scanstart equ esp + 16 ; first two bytes of string
314 ;;; be spent in the first ten instructions.
359 ;;; We already know at this point that the first three bytes of the
/external/zlib/src/contrib/pascal/
H A Dexample.pas389 Inc(PByteArray(compr)^[3]); (* force an error in first compressed block *)
/external/zlib/src/contrib/puff/
H A Dpuff.c226 * - The first code for the shortest length is all zeros. Subsequent codes of
239 int first; /* first code of length len */ local
241 int index; /* index of first code of length len in symbol table */
243 code = first = index = 0;
247 if (code - count < first) /* if length len, return symbol */
248 return h->symbol[index + (code - first)];
250 first += count;
251 first <<= 1;
267 int first; /* firs local
[all...]
/external/zlib/src/
H A Dcrc32.c16 protection on the static variables used to control the first-use generation
18 first call get_crc_table() to initialize the tables before allowing more than
84 The first table is simply the CRC of all possible eight bit values. This is
96 static volatile int first = 1; /* flag to limit concurrent making */ local
102 if (first) {
103 first = 0;
120 and then the byte reversal of those as well as the first table */
134 else { /* not first */
383 /* apply len2 zeros to crc1 (first square will put the operator for one
H A Dgzwrite.c78 /* allocate memory if this is the first time through */
137 int first; local
146 first = 1;
150 if (first) {
152 first = 0;
195 /* allocate memory if this is the first time through */
H A Dzlib2ansi69 my $first = shift @bits;
70 $first =~ s/^\s*//;
71 push @outParams, $first;
72 $first =~ /^(\w+\s*)/;
/external/zlib/src/examples/
H A Dgun.c159 the first 256 entries of prefix[] and suffix[] are never used, could
247 /* set up: get first 9-bit code, which is the first decompressed byte, but
261 outbuf[0] = (unsigned char)final; /* write first decompressed byte */
366 left provide the first 0..7 bits of the next code, end is the last
385 int ret, first, last; local
398 first = 1; /* looking for first gzip header */
408 ret = first ? Z_DATA_ERROR : Z_ERRNO;
411 first
[all...]
H A Dgzlog.c46 When appending data, the information in the first three items above plus the
59 When compressing data, the information in the first two items above plus the
83 gain exclusive access to the log files, first a foo.lock file must be
105 the extra field is within the first 52 bytes of the file, which is smaller
110 - Pointer to first stored block length -- this points to the two-byte length
111 of the first stored block, which is followed by the two-byte, one's
117 Initially this is the same as the first stored block length pointer.
120 is different from the first stored block length pointer. When they are
121 different, the first bit of the last stored block header is eight bits, or
135 block first lengt
294 off_t first; /* offset of first stored block first length byte */ member in struct:log
[all...]
/external/zlib/src/test/
H A Dinfcover.c64 struct mem_item *first; /* pointer to first item in list, or NULL */ member in struct:mem_zone
99 item->next = zone->first;
100 zone->first = item;
125 next = zone->first;
128 zone->first = next->next; /* first one is it, remove from list */
164 zone->first = NULL;
210 item = zone->first;
279 is the error code expected from the first inflat
[all...]
/external/webrtc/src/system_wrappers/source/
H A Ddata_log.cc235 file_->WriteText("%s[%u],", column_it->first.c_str(),
240 file_->WriteText("%s,", column_it->first.c_str());
266 (*row_it)->ToString(column_it->first, &row_string);
H A Ddata_log_unittest.cc83 EXPECT_EQ(str, it->first);
84 if (str != it->first)
/external/webrtc/src/system_wrappers/source/spreadsortlib/
H A Dspreadsort.hpp63 //Start from the second item, as max and min are initialized to the first
125 spread_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset argument
129 //If you know the maximum and minimum ahead of time, you can pass those values in and skip this step for the first iteration
131 find_extremes(first, last, max, min);
132 //max and min will be the same (the first item) iff all values are equivalent
136 unsigned log_divisor = get_log_divisor(last - first, rough_log_2_size((size_t)(*max >> 0) - (*min >> 0)));
144 for (RandomAccessIter current = first; current != last;)
147 bins[0] = first;
153 RandomAccessIter nextbinstart = first;
187 size_t max_count = get_max_count(log_divisor, last - first);
242 spread_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset , std::vector<size_t> &bin_sizes, right_shift shift, compare comp) argument
290 spread_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset , std::vector<size_t> &bin_sizes, right_shift shift) argument
338 spread_sort(RandomAccessIter first, RandomAccessIter last, div_type, data_type) argument
347 spread_sort(RandomAccessIter first, RandomAccessIter last, div_type, data_type, right_shift shift, compare comp) argument
356 spread_sort(RandomAccessIter first, RandomAccessIter last, div_type, data_type, right_shift shift) argument
366 integer_sort(RandomAccessIter first, RandomAccessIter last) argument
377 integer_sort(RandomAccessIter first, RandomAccessIter last, right_shift shift, compare comp) argument
387 integer_sort(RandomAccessIter first, RandomAccessIter last, right_shift shift) argument
483 positive_float_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset , std::vector<size_t> &bin_sizes) argument
532 negative_float_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset , std::vector<size_t> &bin_sizes) argument
583 negative_float_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset , std::vector<size_t> &bin_sizes, right_shift shift) argument
632 negative_float_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset , std::vector<size_t> &bin_sizes, right_shift shift, compare comp) argument
682 float_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset , std::vector<size_t> &bin_sizes) argument
766 float_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset , std::vector<size_t> &bin_sizes, right_shift shift) argument
850 float_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset , std::vector<size_t> &bin_sizes, right_shift shift, compare comp) argument
934 float_Sort(RandomAccessIter first, RandomAccessIter last, cast_type, data_type) argument
943 float_Sort(RandomAccessIter first, RandomAccessIter last, div_type, data_type, right_shift shift) argument
952 float_Sort(RandomAccessIter first, RandomAccessIter last, div_type, data_type, right_shift shift, compare comp) argument
963 float_sort_cast(RandomAccessIter first, RandomAccessIter last, cast_type cVal) argument
974 float_sort_cast_to_int(RandomAccessIter first, RandomAccessIter last) argument
982 float_sort(RandomAccessIter first, RandomAccessIter last, right_shift shift) argument
991 float_sort(RandomAccessIter first, RandomAccessIter last, right_shift shift, compare comp) argument
1004 update_offset(RandomAccessIter first, RandomAccessIter finish, unsigned &char_offset) argument
1026 update_offset(RandomAccessIter first, RandomAccessIter finish, unsigned &char_offset, get_char getchar, get_length length) argument
1104 string_sort_rec(RandomAccessIter first, RandomAccessIter last, unsigned char_offset, std::vector<RandomAccessIter> &bin_cache , unsigned cache_offset, std::vector<size_t> &bin_sizes) argument
1191 reverse_string_sort_rec(RandomAccessIter first, RandomAccessIter last, unsigned char_offset, std::vector<RandomAccessIter> &bin_cache , unsigned cache_offset, std::vector<size_t> &bin_sizes) argument
1281 string_sort_rec(RandomAccessIter first, RandomAccessIter last, unsigned char_offset, std::vector<RandomAccessIter> &bin_cache , unsigned cache_offset, std::vector<size_t> &bin_sizes, get_char getchar, get_length length) argument
1368 string_sort_rec(RandomAccessIter first, RandomAccessIter last, unsigned char_offset, std::vector<RandomAccessIter> &bin_cache , unsigned cache_offset, std::vector<size_t> &bin_sizes, get_char getchar, get_length length, compare comp) argument
1456 reverse_string_sort_rec(RandomAccessIter first, RandomAccessIter last, unsigned char_offset, std::vector<RandomAccessIter> &bin_cache , unsigned cache_offset, std::vector<size_t> &bin_sizes, get_char getchar, get_length length, compare comp) argument
1547 string_sort(RandomAccessIter first, RandomAccessIter last, data_type, unsignedchar_type) argument
1557 reverse_string_sort(RandomAccessIter first, RandomAccessIter last, data_type, unsignedchar_type) argument
1567 string_sort(RandomAccessIter first, RandomAccessIter last, get_char getchar, get_length length, data_type, unsignedchar_type) argument
1577 string_sort(RandomAccessIter first, RandomAccessIter last, get_char getchar, get_length length, compare comp, data_type, unsignedchar_type) argument
1587 reverse_string_sort(RandomAccessIter first, RandomAccessIter last, get_char getchar, get_length length, compare comp, data_type, unsignedchar_type) argument
1597 string_sort(RandomAccessIter first, RandomAccessIter last, unsignedchar_type unused) argument
1608 string_sort(RandomAccessIter first, RandomAccessIter last) argument
1616 reverse_string_sort(RandomAccessIter first, RandomAccessIter last, compare comp, unsignedchar_type unused) argument
1627 reverse_string_sort(RandomAccessIter first, RandomAccessIter last, compare comp) argument
1634 string_sort(RandomAccessIter first, RandomAccessIter last, get_char getchar, get_length length) argument
1651 string_sort(RandomAccessIter first, RandomAccessIter last, get_char getchar, get_length length, compare comp) argument
1668 reverse_string_sort(RandomAccessIter first, RandomAccessIter last, get_char getchar, get_length length, compare comp) argument
[all...]
/external/wpa_supplicant_8/hostapd/
H A Dhostapd_cli.c125 " -i<ifname> Interface to listen on (default: first "
1052 int first = 1; local
1063 if (in_read && first)
1065 first = 0;
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dhostapd.c541 "first address in the block (i.e., addr "
679 * @first: Whether this BSS is the first BSS of an interface; -1 = not first,
687 static int hostapd_setup_bss(struct hostapd_data *hapd, int first) argument
695 wpa_printf(MSG_DEBUG, "%s(hapd=%p (%s), first=%d)",
696 __func__, hapd, conf->iface, first);
712 if (!first || first == -1) {
737 first
[all...]
H A Dhw_features.c226 int sec_chan, ok, j, first; local
267 first = iface->conf->channel;
269 first = sec_chan;
273 if (first == allowed[k]) {
H A Dvlan_init.c547 struct hostapd_vlan *first, *prev, *vlan = hapd->conf->vlan; local
553 first = prev = vlan;
598 if (vlan == first) {
/external/wpa_supplicant_8/hostapd/src/drivers/
H A Ddriver_madwifi.c124 int first = IEEE80211_IOCTL_SETPARAM; local
159 int first = IEEE80211_IOCTL_SETPARAM;
182 int idx = op - first;
183 if (first <= op &&
H A Ddriver_nl80211.c366 const u8 *set_addr, int first);
1692 "event first");
1983 wpa_printf(MSG_WARNING, "nl80211: Was expecting local deauth but got another disconnect event first");
4866 const u8 *set_addr, int first)
4896 if (first && nl80211_get_ifmode(bss) == NL80211_IFTYPE_AP)
10501 wpa_printf(MSG_DEBUG, "nl80211: Not the first BSS - remove it");
4865 wpa_driver_nl80211_finish_drv_init(struct wpa_driver_nl80211_data *drv, const u8 *set_addr, int first) argument
H A Ddriver_wext.c1417 int first; local
1428 first = 1;
1461 if (!first)
1463 first = 0;
1499 if (!first)
/external/wpa_supplicant_8/hostapd/src/radius/
H A Dradius.c980 int i, first = 1; local
1009 if (first) {
1018 md5_vector(first ? 3 : 2, addr, elen, hash);
1019 first = 0;
1050 int i, len, first = 1; local
1073 if (first) {
1082 md5_vector(first ? 3 : 2, addr, _len, hash);
1083 first = 0;
1407 * Returns: VLAN ID for the first tunnel configuration of -1 if none is found
1541 while (pos >= str + 16) { /* all but the first bloc
[all...]

Completed in 3262 milliseconds

1234567891011>>