태그>inline(총 52개의 글)
'inline' 관련 최근글
-
- return, label, this
-
SCIENART BB by SCIENART BB|2018/07/30 14:18
기본 형식 data class Person(val name: String, val age: Int) fun lookForAlice1(people: List) { for (person in people) { if (person.name = "Alice") { println("Found!") return } } println("Alice i..
- return, label, this
-
- GCC-Inline-Assembly-HOWTO
-
태효의 세상 사는 이야기 by 태효|2011/09/27 14:36
GCC-Inline-Assembly-HOWTOSandeep.Sv0.1, 01 March 2003. This HOWTO explains the use and usage of the inline assembly feature provided by GCC. There are only two prerequisites for reading this article, and that’s obviously a..
- GCC-Inline-Assembly-HOWTO
-
- 인라인 어셈블리 공부 3
-
룰루랄라 by 룰루랄라|2011/06/20 16:19
피보나치 수열의 n번째 값을 리턴하는 함수 작성 재귀함수 호출처럼 call함수를 사용하여 구현 단점: O(2^N) 해결법 : Dynamic Programming 로 O(N) int fibonacci_recursive(int n){ int res =0; _asm_ _volatile_( " movl 8(%ebp), %eaxn"..
- 인라인 어셈블리 공부 3
-
- 인라인 어셈블리 공부2
-
룰루랄라 by 룰루랄라|2011/06/13 16:38
행렬(3,3) 곱셈을 행한는 함수를 인라인 어셈으로 작성C[3][3]=A[3][3]*B[3][3]뱀발:집의 놋북이 맥이라 맥에서 컴파일 해서 돌려봤는데 안돌아가내 (당연한걸.) void matrix_multiplication(int a[3][3], int b[3][3], int c[3][3]){ _asm_ _..
- 인라인 어셈블리 공부2
-
- 인라인 어셈블리 공부 1
-
룰루랄라 by 룰루랄라|2011/06/08 14:56
1.문자열과 str1과 str2 의 크기를 비교 2.최대 n번재 문자까지를 비교1.2를 만족하는 함수를 인라인 어셈블리로 작성. int strncmp(char *str1, char *str2, int n){ int result ; _asm_ _volatile_( " cld nt" " repe cmpsb nt" " je 1fn..
- 인라인 어셈블리 공부 1
-
- inline, __inline, __forceinline
-
나름노력파 by 나름노력파|2011/04/05 22:01
인라인 공부를 하다가 다른 소스들을 보게 되었는데 inline, _inline, _forceinline 뭐 이런 것들이 있었다. 사실 예전에도 보았는데 크게 신경쓰지 않고 있었다. 이번에 보면서 인라인의 심오함을 알게 되었다. inline - 우리가 알고있는 일반 inline 함수이다. _inline - Micr..
- inline, __inline, __forceinline
-
- 닐스 얀손스(NILS JANSONS) - BEST of 2010 //..
-
코마블레이드(comablade.com) 깨방정 블로그 by 코코마|2011/01/31 22:33
Pirms aptuveni 9 gadiem, ieraugot deviņgadīgo Nilu, Rīgas skrituļslidotāji uzreiz saprata, ka te kaut kas būs. To Nils apliecināja ik reizi, kad gāja braukāties vai p..
닐스얀손스, NilsJansons, 렘즈, Remz, OS
- 닐스 얀손스(NILS JANSONS) - BEST of 2010 //..
-
- 어그레시브 내공쌓기 링크 // 어글, 기초, 기본, 코마블레이드(comabl..
-
코마블레이드(comablade.com) 블로그 // 샵-알바님들은 나가 주시기 바랍니다~ by 코코마|2010/12/10 18:47
1. 어그레시브 입문 2. 어그레시브 스케이트 특징 3. 어그레시브 스케이트 선택 4. 스케이트 브랜드별 장단점 // 리뷰 - 레이저(Razors)의 장단점 // SL, 제네시스(Genesys), 컬트(Cult) - USD의 장단점 // 카본(Carbon) 1, 2, 3, 카본 프리(Carbon Free), ..
- 어그레시브 내공쌓기 링크 // 어글, 기초, 기본, 코마블레이드(comabl..
-
- a inline 태그의 padding 과 margin
-
호룰루룰루 by 이진우|2010/09/19 14:06
ch3.css body{ font-size:small; font-family: Arial, sans-serif; background:#bbbbbb; text-align:center; margin:0; padding:0; } #container { width: 768px; margin: 0 auto; text-align: left; font-size: 80%; } #register{ float:left; backgroun..
- a inline 태그의 padding 과 margin
-
-
- Park2: Montage
-
comablade.com 어글 어그레시브 인라인 // 샵-알바님들은 나가 주시기 바랍니다~ by 코코마|2010/05/06 17:03
Park2: Montage Thank you to everyone who contributed and made this possible. Even with the changed deadlines, postponements and typical delay this video came together better then i ever expected! PARK 3 will hopefully gain..
- Park2: Montage
-
- 컴파일 시에 함수 인라인 최적화 제외
-
cynical..? by cynardor|2010/03/18 19:32
코딩 중에 이상한데서 로그가 찍혀서 확인해봤더니. 함수하나가 인라인 최적화가 되면서 걸리지 않아야 되는 위치에서 자꾸 로그가. 그냥 제목처럼 검색했더니 나오는 것도 없고. ㅋ 컴파일 옵션을 살펴보다가 MSDN에서 발견~! 함수 위 아래에 요로코롬 해주면 제외된다는. #pra..
- 컴파일 시에 함수 인라인 최적화 제외
-