Home
last modified time | relevance | path

Searched refs:bytesPerUnit (Results 1 – 9 of 9) sorted by relevance

/dports/lang/abcl/abcl-src-1.8.0/src/org/armedbear/lisp/
H A DFileStream.java53 private final int bytesPerUnit; field in FileStream
113 bytesPerUnit = 1; in FileStream()
123 bytesPerUnit = width / 8; in FileStream()
194 return number(length / bytesPerUnit); in fileLength()
223 return pos / bytesPerUnit; in _getFilePosition()
242 pos = ((Fixnum) arg).value * bytesPerUnit; in _setFilePosition()
244 pos = ((Bignum) arg).longValue() * bytesPerUnit; in _setFilePosition()
H A DURLStream.java56 private final int bytesPerUnit; field in URLStream
75 bytesPerUnit = 1; in URLStream()
82 bytesPerUnit = width / 8; in URLStream()
141 return bytesPerUnit; in getBytesPerUnit()
H A DJarStream.java56 private final int bytesPerUnit; field in JarStream
76 bytesPerUnit = 1; in JarStream()
83 bytesPerUnit = width / 8; in JarStream()
/dports/games/libretro-play/Play--3cd0a367b5e24c061a6310c68c9fa7f6b531ebd4/tools/PsfPlayer/Source/win32_ui/DebugSupport/
H A DMemoryView.cpp159 unsigned int unitsPerLine = renderParams.bytesPerLine / renderParams.unit->bytesPerUnit; in Paint()
169 unsigned int unitsForCurrentLine = bytesForCurrentLine / renderParams.unit->bytesPerUnit; in Paint()
172 auto unitAddress = address + (j * renderParams.unit->bytesPerUnit); in Paint()
228 SetSelectionStart(m_selectionStart & ~(unit.bytesPerUnit - 1)); in SetDisplayUnit()
358 unsigned int selectedLineByte = selectedLineUnit * renderParams.unit->bytesPerUnit; in OnLeftButtonUp()
388 SetSelectionStart(m_selectionStart + renderParams.unit->bytesPerUnit); in OnKeyDown()
394 SetSelectionStart(m_selectionStart - renderParams.unit->bytesPerUnit); in OnKeyDown()
426 assert((selectionStart % renderParams.unit->bytesPerUnit) == 0); in UpdateCaretPosition()
427 …electionStartUnit = (selectionStart % renderParams.bytesPerLine) / renderParams.unit->bytesPerUnit; in UpdateCaretPosition()
489 …it * fontSize.cx + m_renderMetrics.unitSpacing) + (renderParams.unit->bytesPerUnit * fontSize.cx)); in GetRenderParams()
[all …]
H A DMemoryView.h62 unsigned int bytesPerUnit = 0; member
/dports/sysutils/gdisk/gptfdisk-1.0.8/
H A Dsupport.cc157 uint64_t response = def, bytesPerUnit, mult = 1, divide = 1; in IeeeToInt() local
195 bytesPerUnit = UINT64_C(1) << (10 * (foundAt + 1)); in IeeeToInt()
196 mult = bytesPerUnit / sSize; in IeeeToInt()
197 divide = sSize / bytesPerUnit; in IeeeToInt()
/dports/games/libretro-play/Play--3cd0a367b5e24c061a6310c68c9fa7f6b531ebd4/Source/ui_qt/DebugSupport/
H A DQtMemoryViewModel.cpp41 int offset = (index.column() * g_units[m_activeUnit].bytesPerUnit); in data()
158 return g_units[m_activeUnit].bytesPerUnit; in GetBytesPerUnit()
H A DMemoryViewTable.cpp200 auto bytesPerUnit = m_model->GetBytesPerUnit(); in AutoColumn() local
201 int asciiCell = m_cwidth * bytesPerUnit; in AutoColumn()
216 m_model->SetColumnCount(i * bytesPerUnit); in AutoColumn()
H A DQtMemoryViewModel.h17 unsigned int bytesPerUnit = 0; member