mangling$550479$ - перевод на греческий
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

mangling$550479$ - перевод на греческий

ALGORITHMICALLY MODIFYING DATA BELOW THE WORD LEVEL
Bit twiddle; Bit bashing; Bit twiddling; Bit diddling; Bit twisting; Bit fiddling; Bit fiddle; Bit diddle; Bit twistle; Bit bash; Bit wrangling; Bit wrangle; Bit mangling; Bit mangle; Bit hustling; Bit hustle; Twiddling of bits; Wrangling of bits; Mangling of bits; Bashing of bits; Diddling of bits; Twisting of bits; Fiddling of bits; Hustling of bits; Twiddling bits; Wrangling bits; Mangling bits; Bashing bits; Diddling bits; Twisting bits; Fiddling bits; Hustling bits

mangling      
κατακρεούργηση, ξέσχισμα

Определение

Mangling

Википедия

Bit manipulation

Bit manipulation is the act of algorithmically manipulating bits or other pieces of data shorter than a word. Computer programming tasks that require bit manipulation include low-level device control, error detection and correction algorithms, data compression, encryption algorithms, and optimization. For most other tasks, modern programming languages allow the programmer to work directly with abstractions instead of bits that represent those abstractions. Source code that does bit manipulation makes use of the bitwise operations: AND, OR, XOR, NOT, and possibly other operations analogous to the boolean operators; there are also bit shifts and operations to count ones and zeros, find high and low one or zero, set, reset and test bits, extract and insert fields, mask and zero fields, gather and scatter bits to and from specified bit positions or fields. Integer arithmetic operators can also effect bit-operations in conjunction with the other operators.

Bit manipulation, in some cases, can obviate or reduce the need to loop over a data structure and can give many-fold speed ups, as bit manipulations are processed in parallel.