Lines Matching full:passed
63 /// a. Argument is passed in a single argument register, or on the stack by
65 /// i. If the argument is floating-point type, the argument is passed in FAR. if
66 /// no FAR is available, it’s passed in GAR. If no GAR is available, it’s
67 /// passed on the stack. When passed in registers or on the stack,
70 /// ii. If the argument is integer or pointer type, the argument is passed in
71 /// GAR. If no GAR is available, it’s passed on the stack. When passed in
76 /// a. The argument is passed in a pair of GAR, with the low-order GRLEN bits in
79 /// low-order GRLEN bits are passed in the register and the high-order GRLEN
80 /// bits are passed on the stack. If no GAR is available, it’s passed on the
113 /// the structure is passed through the GAR by value passing; If no GAR is
114 /// available, it’s passed on the stack.
126 /// i. One floating-point member. The argument is passed in a FAR; If no FAR is
127 /// available, the value is passed in a GAR; if no GAR is available, the value
128 /// is passed on the stack.
148 /// ii. Two floating-point members. The argument is passed in a pair of
151 /// number of available FAR is less than 2, it’s passed in a GAR, and passed on
166 /// is passed in a GAR, and passed on the stack if no GAR is available.
179 /// floating-point member of the structure is passed in the FAR, and the integer
180 /// member of the structure is passed in the GAR; If no floating-point register
181 /// but one GAR is available, it’s passed in GAR; If no GAR is available, it’s
182 /// passed on the stack.
196 /// i. The argument is passed in a pair of available GAR, with the low-order
199 /// the GAR and the high-order bits are on the stack, and passed on the stack if
213 /// adjacent float members or 3-4 float members. The argument is passed in a
217 /// the stack, and passed on the stack if no GAR is available.
256 /// ii. The structure with two double members is passed in a pair of available
257 /// FARs. If no a pair of available FARs, it’s passed in GARs. A structure with
272 /// structure is passed in the FAR, and the integer member of the structure is
273 /// passed in the GAR; If no floating-point registers but two GARs are
274 /// available, it’s passed in the two GARs; If only one GAR is available, the
276 /// it’s passed on the stack if no GAR is available.
289 /// A. The argument is passed in a pair of available GAR, with the low-order
292 /// the GAR and the high-order bits are on the stack, and passed on the stack if
316 /// a. It’s passed by reference and are replaced in the argument list with the
317 /// address. If there is an available GAR, the reference is passed in the GAR,
318 /// and passed on the stack if no GAR is available.
349 /// Union is passed in GAR or stack.
351 /// a. The argument is passed in a GAR, or on the stack by value if no GAR is
375 /// a. The argument is passed in a pair of available GAR, with the low-order
378 /// the GAR and the high-order bits are on the stack. The arguments are passed
392 /// a. It’s passed by reference and are replaced in the argument list with the
393 /// address. If there is an available GAR, the reference is passed in the GAR,
394 /// and passed on the stack if no GAR is available.
408 /// floating-point number, is passed as though it were a structure containing
435 /// Variadic arguments are passed in GARs in the same manner as named arguments.