Calling Sequence - traducción al español
Diclib.com
Diccionario en línea

Calling Sequence - traducción al español

HOW A PROGRAMMING LANGUAGE'S FUNCTIONS RECEIVE PARAMETERS AND RETURN VALUES
Calling conventions

Calling Sequence      
Secuencia de llamada
title screen         
  • A Farewell to Arms]].''
COMBINATION OF VISUALS AND SOUND ELEMENTS USED IN FILMS AND TELEVISION PROGRAMS IN WHICH IS PRESENTED TITLE, AND KEY PRODUCTION AND CAST-MEMBER NAMES AND DETAILS
Opening sequence; Title screen; Titlescreen; Opening visuals; Title Sequence; Opening theme; Main-on-end titles; Main titles; Opening Sequence
(n.) = pantalla-portada, portada
Ex: In the case of a computer file, the title screen is a display of data that includes the title proper and usually, though not necessarily, the statement of responsibility and the data relating to publication.
name-calling         
WORD WITH A PEJORATIVE MEANING THAT SHOULD INSULT A PERSON
Name-calling; Namecalling
(n.) = insultos
Ex: Yes, those "press releases" have threatening statements and name-calling and fire-and-brimstone predictions, but they add no facts to the discussion on Cuba.

Definición

calling convention
<programming> The arrangement of arguments for a procedure or function call. Different programming languages may require arguments to be pushed onto a stack or entered in registers in left-to-right or right-to left order, and either the caller or the callee can be responsible for removing the arguments. The calling convention also determines if a variable number of arguments is allowed. (1995-11-11)

Wikipedia

Calling convention

In computer science, a calling convention is an implementation-level (low-level) scheme for how subroutines or functions receive parameters from their caller and how they return a result. When some code calls a function, design choices have been taken for where and how parameters are passed to that function, and where and how results are returned from that function, with these transfers typically done via certain registers or within a stack frame on the call stack. There are design choices for how the tasks of preparing for a function call and restoring the environment after the function has completed are divided between the caller and the callee. Some calling convention specifies the way every function should get called. The correct calling convention should be used for every function call, to allow the correct and reliable execution of the whole program using these functions.