Lines Matching defs:end
80 uint32_t end = (uintptr_t)addr + size;
82 end = ALIGN(end, CACHE_ALIGNED_SIZE);
83 DCacheFlushRange(start, end);
90 uint32_t end = (uintptr_t)addr + size;
92 end = ALIGN(end, CACHE_ALIGNED_SIZE);
93 DCacheInvRange(start, end);
1395 static void SdhciDoTune(struct SdhciHost *host, uint32_t opcode, uint32_t start, uint32_t end)
1402 rise = end;
1404 for (index = start; index <= end; index++) {
1426 if (err && index == end) {
1427 rise = end;
1447 uint32_t end = SDHCI_PHASE_SCALE / SDHCI_PHASE_SCALE_TIMES;
1452 for (index = 0; index <= end; index++) {
1467 if ((edgeP2F != start) && (edgeF2P != end)) {
1474 if ((edgeP2F == start) && (edgeF2P == end)) {
1481 end = edgeF2P * SDHCI_PHASE_SCALE_TIMES;
1482 if (end <= start) {
1483 end += SDHCI_PHASE_SCALE;
1486 SdhciDoTune(host, cmdCode, start, end);