Lines Matching defs:xentPhysicalIndex
340 addLPMappingTableEntry(int xentLogicalIndex, int xentPhysicalIndex)
349 if (xentLogicalIndex <= 0 || xentLogicalIndex > MAX_ENTITY_INDEX || xentPhysicalIndex <= 0 || xentPhysicalIndex > MAX_ENTITY_INDEX)
352 physentry = getPhysicalTableStaleEntry(xentPhysicalIndex);
359 physentry = getPhysicalTableEntry(xentPhysicalIndex);
382 zPhyIndexes[0] = xentPhysicalIndex;
389 if (*p == xentPhysicalIndex)
392 if (*p == -xentPhysicalIndex) { /* Reuse a 'deleted' entry */
393 *p = xentPhysicalIndex;
404 zRunner->physicalIndexes[i] = xentPhysicalIndex;
417 zPhyIndexes[0] = xentPhysicalIndex;
440 deleteLPMappingTableEntry(int xentLogicalIndex, int xentPhysicalIndex)
449 if (xentLogicalIndex <= 0 || xentLogicalIndex > MAX_ENTITY_INDEX || xentPhysicalIndex <= 0 || xentPhysicalIndex > MAX_ENTITY_INDEX)
455 zPhysicalEntry = getPhysicalTableStaleEntry(xentPhysicalIndex);
462 zPhysicalEntry = getPhysicalTableEntry(xentPhysicalIndex);
472 if (*p == xentPhysicalIndex) {
473 *p = -xentPhysicalIndex;
519 deleteLPMappingPhysicalIndex(int xentPhysicalIndex) {
526 if (xentPhysicalIndex <= 0 || xentPhysicalIndex > MAX_ENTITY_INDEX)
528 zPhysicalEntry = getPhysicalTableStaleEntry(xentPhysicalIndex);
531 zPhysicalEntry = getPhysicalTableEntry(xentPhysicalIndex);
540 if (*p == xentPhysicalIndex) {
541 *p = -xentPhysicalIndex;