Vertaling van "bitwise AND" in Spaans
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
RISC-V defines nine possible operations: swap (use source register value directly); add; bitwise and, or, and exclusive-or; and signed and unsigned minimum and maximum.
RISC-V define nueve operaciones posibles: intercambio (use el valor del registro de origen directamente); añadir; bitwise y, o, y exclusivo -o; y mínimo y máximo firmado y sin firmar.
For example if the error code was '19' you would receive the following results from bitwise AND functions on them
Por ejemplo si el código de error era '19' recibirías los siguientes resultados de bitwise Y funciones
Gives the result of bitwise AND of A and B.
For example, given a bit pattern 0011 (decimal 3), to determine whether the second bit is set we use a bitwise AND with a bit pattern containing 1 only in the second bit
Por ejemplo, dado un patrón de bits 0011, para determinar si el segundo bit está encendido se usa una operación AND con una máscara que contiene encendido solo el segundo bit, que es el que se quiere determinar
The following example shows the result of a bitwise AND on the numbers 23 and 12.
El ejemplo siguiente demuestra el resultado de a bitwise Y en los números 23 y 12.
According to the Monday announcements, the decision regarding Bitwise and VanEck proposals will be made on or before Oct. 13 and Oct. 18 respectively while the third one will be made by September 29th this year.
Según el anuncio del lunes, la decisión con respecto a las propuestas de Bitwise y VanEck se tomará el 13 de octubre y el 18 de octubre, o antes, respectivamente, mientras que la tercera se tomará el 29 de septiembre de este año.
The SEC decided to postpone the final decision on the Bitwise and VanEck/SolidX proposals until October 13 and October 18.
Los plazos finales para decidir sobre las decisiones de Bitwise y VanEck/SolidX son el 13 y 18 de octubre, respectivamente.
Returns the bitwise AND of all bits in expr.
Atomically replaces the value pointed by obj with the result of bitwise AND between the old value of obj and arg, and returns the value obj held previously.
Atómicamente reemplaza el valor apuntado por obj con el resultado de AND bit a bit entre el valor antiguo de obj y arg, y devuelve el valor que tenía antes obj.
The bitwise AND operation returns 1, if the matching bits from both the operands are 1, otherwise it returns 0.
El bit a bit y la operación vuelve 1, si los bits coincidentes de ambos los operandos son 1, de lo contrario retorna 0.
Both endpoints share at least one non-visible region which implies that the line does not cross the visible region. (bitwise AND of endpoints! = 0): trivial reject.
Ambos puntos están en la misma región no visible (la operación bitwise AND de sus puntos extremos no es igual a cero): rechazo trivial.
When given an IP address to find a suitable route for, the kernel steps through each of the routing table entries, taking the bitwise AND of the address and the genmask before comparing it to the target of the route.
Dada una dirección IP para la que encontrar una ruta apropiada, el núcleo recorre la tabla registro a registro haciendo un "AND" lógico de la dirección y la máscara de nivel de generalización antes de compararla con el destino que muestra dicho registro.
Note that the single"&" is correct - this is a bitwise AND, not a logical AND, which is what the two ampersands are called.