/external/squashfs-tools/kernel/fs/squashfs/ |
block.c | 47 u64 *cur_index, int *offset, int *length) 52 bh = sb_bread(sb, *cur_index); 59 bh = sb_bread(sb, ++(*cur_index)); 88 u64 cur_index = index >> msblk->devblksize_log2; local 114 for (b = 0; bytes < length; b++, cur_index++) { 115 bh[b] = sb_getblk(sb, cur_index); 128 bh[0] = get_block_length(sb, &cur_index, &offset, &length); 147 bh[b] = sb_getblk(sb, ++cur_index); 271 ERROR("sb_bread failed reading block 0x%llx\n", cur_index);
|
/external/iproute2/ip/ |
ipmaddr.c | 234 int cur_index = 0; local 238 cur_index = list->index; 239 fprintf(fp, "%d:\t%s%s", cur_index, list->name, _SL_); 240 } else if (cur_index != list->index) { 241 cur_index = list->index; 242 fprintf(fp, "%d:\t%s\n", cur_index, list->name);
|
/sdk/testapps/testSensors/src/com/android/tests/testsensors/ |
TestSensorsActivity.java | 213 int cur_index = 0; local 224 cur_index++;
|
/device/google/dragon/recovery/updater/ |
fwtool.cpp | 189 int cur_index; local 192 cur_index = 0; 194 cur_index = 1; 200 int old_index = cur_index ^ 1; 210 part_list[cur_index].id_str, &cur_id_size, NULL)); 243 part_list[cur_index].name_str, &sec_size, NULL));
|
/sdk/apps/SdkController/src/com/android/tools/sdkcontroller/handlers/ |
SensorChannel.java | 87 int cur_index = 0; local 98 cur_index++; 103 cur_index, def_sens.getName(), def_sens.getType()));
|
/external/squashfs-tools/kernel-2.4/fs/squashfs/ |
inode.c | 89 int *cur_index, int *offset, int *c_byte) 95 if (!(bh = sb_bread(s, *cur_index))) 106 if (!(bh = sb_bread(s, ++(*cur_index)))) 135 if (!(bh = sb_bread(s, ++(*cur_index)))) 142 *cur_index); 163 unsigned int cur_index = index >> msblk->devblksize_log2; local 178 if (!(bh[0] = sb_getblk(s, cur_index))) 182 if (!(bh[b] = sb_getblk(s, ++cur_index))) 188 if (!(bh[0] = get_block_length(s, &cur_index, &offset, 201 if (!(bh[b] = sb_getblk(s, ++cur_index))) [all...] |