By using keyword 'inline' in function definition, programmer can request that the (C/C++) compiler insert the complete body of the function in every place that the function is called, rather than generating code to call the function in the one place it is defined.

learn more… | top users | synonyms (1)

2
votes
3answers
71 views

Parameter passing to Linux C inline functions

When calling a non-inline function with two integer or pointer parameters from a C program, they are passed in registers rdi and rsi. Can the compilation be done in such a way that integer/pointer ...
4
votes
2answers
83 views

Inline functions result in decreased performance. Why? How can I fix it?

When programming, I like to cut my code into easily re-usable function that perform specific actions. It helps me organize, remember and optimize my code. It also makes it so easily refactorable! As ...
4
votes
4answers
93 views

C++ Inline Function Prototypes

I came across a header file that includes various function prototype declarations which are inline and const: inline bool Foo1() const; inline bool Foo2() const; inline bool Foo3() const; ... I ...
2
votes
2answers
94 views

What happens if we make recursive functions as inline?

I have a doubt regarding inline functions. Inline functions will not involve any function calls but just replacement of function definition wherever the call is made to the inline function.Inline ...
0
votes
2answers
82 views

Why using inline funtion in c++ doesn't grow binary size?

I have written this code: inline int a_plus_b_power2(int a, int b) { return (a + b) * (a + b); } int main() { for(int a = 0; a < 9999999999999; ++a) for(int b = 0; b < 999999999999; ...
1
vote
3answers
127 views

How to understand the sentence in the C++ primer 3rd

Following is an extract taken from chapter 7.6 of the <C++ primer (3rd)> by Stanley B. Lippman Josée Lajoie. A function specified as inline is expanded "in line" at each point in the program ...
1
vote
2answers
289 views

Loops and inline functions [closed]

Why is it that a function with loops cannot be made inline? Is it due to a performance issue or is there any other reason?
4
votes
4answers
117 views

C++ - What is the difference between inlines defined in CPP and H

This is less of an "I'm having this issue" question, and more of an "I really want to understand how the language works better" question. I've recently started encountering definitions of inline ...
0
votes
6answers
200 views

How to guarantee that a function is inlined in C++

in C++, a function can be defined to be inline using inline key word. It is like the programmer has requested from the compiler to insert the complete body of the function in every place that the ...
6
votes
2answers
202 views

Depth of inlining in GCC compiler

I have studied that The inline specifier is a hint to the compiler that it should attempt to generate code [...] inline rather than laying down the code for the function once and then calling ...
0
votes
3answers
73 views

API struct utilities - functions or macros?

I have a utility struct defined in a library API, that has four fields, all numeric counters. typedef struct { size_t bytes; int codepoints; int graphemes; int columns; } ...
2
votes
3answers
186 views

Identity of static inline function?

Does C static inline function have identity at runtime? Should I care about naming conflict of that constructs? If the function is defined in .c file? Is it same?
4
votes
3answers
785 views

C inline functions and “undefined external” error

I'm trying to replace some macro subroutines with inline functions, so the compiler can optimize them, so the debugger can step into them, etc. If I define them as normal functions it works: void ...
0
votes
3answers
505 views

C++ function used to work, now returning 0xfdfdfdfd

I have some code I wrote a few years ago. It has been working fine, but after a recent rebuild with some new, unrelated code elsewhere, it is no longer working. This is the code: //myobject.h ... ...
3
votes
2answers
994 views

C: Pointer to inline function

I have a static inline function defined in an H file, and at one point in a C file, I'm assigning a pointer to the function, something like this: foo.h: static inline void frobnicate(void) { // ...
0
votes
4answers
191 views

Is using an inline function as fast as directly writing the function body in the code?

class MyClass { public: MyClass() { m_dbLoopStart = 0.0; m_dbLoopStop = 100.0; m_dbLoopStep = 0.001; } // Which of the ...
0
votes
1answer
65 views

Pass a new IResponder to function without making the whole class implement IResponder

I've got a custom mxml component that currently implements IResponder. Passing this IResponder to a function works fine using this. This, however, includes implementing the public methods result and ...
7
votes
3answers
518 views

Does LLVM convert Objective-C methods to inline functions?

Does LLVM automatically convert Objective-C methods to inline functions when possible? (I.e., is it just as performant to create an Objective-C method for a block of code that you could otherwise ...
2
votes
4answers
948 views

Inline function prototype vs regular declaration vs prototype

What's the difference between inline function and then main like so: inline double cube(double side) { return side * side * side; } int main( ) { cube(5); } vs just declaring a function ...
3
votes
3answers
144 views

C++ - When function inlining is not possible?

Folks, I was reading "Thinking in C++" (Chap - Inline functions), where I encountered this statement. "The compiler also cannot perform inlining if the address of the function is taken ...
3
votes
5answers
277 views

Do “#define” and inline behave the same?

I have some short defines in one of my headers like this: #define ROUND_DOWN(a,b) (a)-(a)%(b) e.g. ROUND_DOWN(178,32) = 160 But if i pass this to it: ROUND_DOWN(160*2, 32); then it gets ...
0
votes
3answers
184 views

how does inline functions expose internal data structures?

I hear this a lot of times that: "inline functions in C expose internal data structures" and that is one of the reasons some people do not like them. Can someone please explain, how? Thanks in ...
7
votes
5answers
4k views

Python equivalence to inline functions or macros

I just realized that doing x.real*x.real+x.imag*x.imag is three times faster than doing abs(x)**2 where x is a numpy array of complex numbers. For code readability, I could define a function ...
5
votes
2answers
639 views

Tool to automatically inline JavaScript function calls?

Inlining JavaScript function calls speeds up the execution and also reduces the code size after gzipping, as described in this article: ...
0
votes
3answers
168 views

C++,Need help to understand some constructors and functions in a vector class using pointers

Greetings All; I have to develop a C++ class library comprising a collection of numerical techniques for scientific computing. The library should implement Vector class (using pointers) with some ...
12
votes
3answers
2k views

How to declare an inline function in C99 multi-file project?

I want to define an inline function in a project, compiled with c99. How can I do it? When I declare the function in a header file and give the detail in a .c file, the definition isn't recognized by ...
10
votes
3answers
533 views

Crash when running application due to existence of unexecuted code in source file - c++

I'm working on a pretty tricky problem that I've been on for literally a week now. I've hit a very hard wall and my forehead hurts from banging it so I'm hoping someone can help me out. I am using ...
1
vote
1answer
581 views

Can gcc inline an indirect function call through a constant array of function pointers?

Let's say we have this code: inline int func_2 (int a, int b) { return time() + a * b; } int main (void) { int x = (int (*[])(int, int)){func_1, func_2, func_3}[1](6, 7); } Can gcc be somehow ...
3
votes
1answer
265 views

Is there any good way for an inline function to access private or internal values?

I just ran into an issue: when I try to access a private or internal value from an inline function, I get the error "The value 'xxx' was marked inline but its implementation makes use of an internal ...
0
votes
2answers
559 views

Defining a Static 2-dimension Array with Inline Function

I setup a class with: class Example { static const float array[3][8]; }; and implemented inline const float below_center(const float pos) { return pos - (size / 2); // size is a const ...
2
votes
1answer
264 views

How to access this variable in an inline function?

Here is my dilemma. I've got this section of code: var list_of_numbers = new Array(); function AddToArray(func) { // Add to the *beginning* of the array // essentially reversing the order ...
0
votes
4answers
2k views

MVC 2: Html.TextBoxFor, etc. in VB.NET 2010

I have this sample ASP.NET MVC 2.0 view in C#, bound to a strongly typed model that has a first name, last name, and email: <div> First: <%= Html.TextBoxFor(i => i.FirstName) %> ...
3
votes
1answer
1k views

Is there a way to define C inline function in .c file rather than .h file? (Xcode)

As I know, C inline function body should be defined in .h file because it causes an error 'function-name used but never defined" if body defined in .c file. Is this the regular way? Or how to define ...
1
vote
3answers
125 views

Inline function in other inline function in C

Will this code: inline int funcA(int a) __attribute__((always_inline)) { return a + 1; } inline int funcB(int b) __attribute__((always_inline)) { return funcA(b + 2); } int main() { ...
3
votes
1answer
703 views

Inline function and calling cost in C

I'm making a vector/matrix library. (GCC, ARM NEON, iPhone) typedef struct{ float v[4]; } Vector; typedef struct{ Vector v[4]; } Matrix; I passed struct data as pointer to avoid performance degrade ...
0
votes
6answers
239 views

c++ inline functions

i'm confused about how to do inline functions in C++.... lets say this function. how would it be turned to an inline function int maximum( int x, int y, int z ) { int max = x; if ( y > ...
17
votes
7answers
598 views

Inline functions in C++

If we define a member function inside the class definition itself, is it necessarily treated inline or is it just a request to the compiler which it can ignore.
3
votes
2answers
485 views

Inline functions with internal linkage?

In C: Why is so that only inline functions with internal linkage (ie declared with static) may reference (ie copy address, read, write, or call) a variable or function at file scope with static ...
4
votes
6answers
244 views

Inline Functions

I know compiler may or may not perform inline expansion of a function whether requested by the programmer or not. I was just curious to know, is there any way by which programmer can know for sure ...
0
votes
2answers
87 views

How do i implement this delegate?

Action doesnt seem to support params string[] as a param so i wrote delegate void WriteFn(string s, params string[] ls); i have this function void blah(WriteFn Write, string fmt, params string[] ...
6
votes
1answer
8k views

Multiple definition of inline functions when linking static libs

I have a C++ program that I compile with mingw (gcc for Windows). Using the TDM release of mingw which includes gcc 4.4.1. The executable links to two static library (.a) files: On of them is a ...
0
votes
2answers
297 views

Compiler/Linking Error: Freedup

I've been trying to compile a program for hardlinking duplicate files called freedup. I did try to email the author/maintainer of the program, but it's been a long time and I haven't heard anything ...
0
votes
2answers
643 views

c++: header function not being linked properly from library into exe

I have a header file in a library (alibrary.lib). The library is a static library (.lib) and it links properly to exe. Now, I have a class: Vector3d. class Vector3d { void amethod() { ...
1
vote
3answers
541 views

VB6 (erk) - Inline functions?

I use VB6 for an application. Is it possible to force the compiler to inline a function? Or is there an add-in that achieves the same thing? There's a secure part of my code that I want to make ...