diff options
Diffstat (limited to 'plugins/arm/v7/operands/shift.c')
-rw-r--r-- | plugins/arm/v7/operands/shift.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/plugins/arm/v7/operands/shift.c b/plugins/arm/v7/operands/shift.c index 3dfdf12..be45371 100644 --- a/plugins/arm/v7/operands/shift.c +++ b/plugins/arm/v7/operands/shift.c @@ -1,6 +1,6 @@ /* Chrysalide - Outil d'analyse de fichiers binaires - * shift.c - décallages de valeurs + * shift.c - décalages de valeurs * * Copyright (C) 2014-2017 Cyrille Bagard * @@ -29,18 +29,18 @@ -/* Définition d'un opérande visant une opérande de décallage ARMv7 (instance) */ +/* Définition d'un opérande visant une opérande de décalage ARMv7 (instance) */ struct _GArmV7ShiftOperand { GArchOperand parent; /* Instance parente */ - SRType shift_type; /* Type de décallage */ - GArchOperand *shift_value; /* Valeur du décallage */ + SRType shift_type; /* Type de décalage */ + GArchOperand *shift_value; /* Valeur du décalage */ }; -/* Définition d'un opérande visant une opérande de décallage ARMv7 (classe) */ +/* Définition d'un opérande visant une opérande de décalage ARMv7 (classe) */ struct _GArmV7ShiftOperandClass { GArchOperandClass parent; /* Classe parente */ @@ -48,10 +48,10 @@ struct _GArmV7ShiftOperandClass }; -/* Initialise la classe des opérandes de décallage ARMv7. */ +/* Initialise la classe des opérandes de décalage ARMv7. */ static void g_armv7_shift_operand_class_init(GArmV7ShiftOperandClass *); -/* Initialise une instance d'opérande de décallage ARMv7. */ +/* Initialise une instance d'opérande de décalage ARMv7. */ static void g_armv7_shift_operand_init(GArmV7ShiftOperand *); /* Supprime toutes les références externes. */ @@ -68,7 +68,7 @@ static void g_armv7_shift_operand_print(const GArmV7ShiftOperand *, GBufferLine -/* Indique le type défini par la GLib pour une opérande de décallage ARMv7. */ +/* Indique le type défini par la GLib pour une opérande de décalage ARMv7. */ G_DEFINE_TYPE(GArmV7ShiftOperand, g_armv7_shift_operand, G_TYPE_ARCH_OPERAND); @@ -76,7 +76,7 @@ G_DEFINE_TYPE(GArmV7ShiftOperand, g_armv7_shift_operand, G_TYPE_ARCH_OPERAND); * * * Paramètres : klass = classe à initialiser. * * * -* Description : Initialise la classe des opérandes de décallage ARMv7. * +* Description : Initialise la classe des opérandes de décalage ARMv7. * * * * Retour : - * * * @@ -105,7 +105,7 @@ static void g_armv7_shift_operand_class_init(GArmV7ShiftOperandClass *klass) * * * Paramètres : operand = instance à initialiser. * * * -* Description : Initialise une instance d'opérande de décallage ARMv7. * +* Description : Initialise une instance d'opérande de décalage ARMv7. * * * * Retour : - * * * @@ -234,7 +234,7 @@ static void g_armv7_shift_operand_print(const GArmV7ShiftOperand *operand, GBuff * * * Paramètres : - * * * -* Description : Crée un réceptacle pour opérande de décallage ARMv7. * +* Description : Crée un réceptacle pour opérande de décalage ARMv7. * * * * Retour : Opérande mis en place. * * * @@ -260,9 +260,9 @@ GArchOperand *g_armv7_shift_operand_new(SRType type, GArchOperand *value) * * * Paramètres : operand = opérande à consulter. * * * -* Description : Indique la forme de décallage représenté. * +* Description : Indique la forme de décalage représenté. * * * -* Retour : Type de décallage. * +* Retour : Type de décalage. * * * * Remarques : - * * * @@ -279,7 +279,7 @@ SRType g_armv7_shift_operand_get_shift_type(const GArmV7ShiftOperand *operand) * * * Paramètres : operand = opérande à consulter. * * * -* Description : Founit la valeur utilisée pour un décallage. * +* Description : Founit la valeur utilisée pour un décalage. * * * * Retour : Opérande en place. * * * |