会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
通杀
博客园
首页
新随笔
联系
订阅
管理
随笔 - 31
文章 - 3
评论 - 0
阅读 -
9016
上一页
1
2
3
4
下一页
2020年12月24日
gtest tuple tr1 冲突
摘要: -DGTEST_HAS_TR1_TUPLE=0 -DGTEST_USE_OWN_TR1_TUPLE=0
阅读全文
posted @ 2020-12-24 17:58 通杀
阅读(117)
评论(0)
推荐(0)
2020年6月18日
heart
摘要: <html> <script> (function(window,document,undefined){ var hearts = []; window.requestAnimationFrame = (function(){ return window.requestAnimationFrame
阅读全文
posted @ 2020-06-18 19:38 通杀
阅读(114)
评论(0)
推荐(0)
2020年4月26日
gcc & x86
摘要: x86指令集 https://www.felixcloutier.com/x86/index.html http://www.tommesani.com/Docs.html SSE的浮点运算指令分为两大类:Packed 和Scalar https://blog.csdn.net/woxiaohaha
阅读全文
posted @ 2020-04-26 21:01 通杀
阅读(249)
评论(0)
推荐(0)
2020年4月23日
const 值被更改的问题
摘要: 今天同事问了关于const 值被更改的问题,这个问题在面试中也会经常被问到,所以专门写篇博客总结下。 代码如下 输出结果:a:10 p:20 简单分析: 其实针对该问题,原因比较简单,在printf调用中,由于a是常量,编译器做了优化,将a的值直接替换为10,所以在后续对a的内存位置进行更改为20时
阅读全文
posted @ 2020-04-23 23:26 通杀
阅读(629)
评论(0)
推荐(0)
2020年4月20日
堆栈平衡
摘要: 1 #include <stdio.h> 2 #include <unistd.h> 3 4 int abc() { 5 int d; 6 return 2; 7 } 8 int sum(int a) { 9 int c; 10 abc(); 11 return a; 12 } 13 int mai
阅读全文
posted @ 2020-04-20 15:01 通杀
阅读(662)
评论(0)
推荐(0)
at&a 64汇编
摘要: 1.第一个at&a 64汇编 1 .section .data 2 strFormat: 3 .asciz "%s\n" 4 strUseLibc: 5 .asciz "Hi, If you see me, you called c lib :)" 6 strUseSyscall: 7 .asciz
阅读全文
posted @ 2020-04-20 10:46 通杀
阅读(299)
评论(0)
推荐(0)
2020年4月11日
asm
摘要: syscall https://blog.rchapman.org/posts/Linux_System_Call_Table_for_x86_64/ at&a x86_64 https://nifengz.com/introduction_x64_assembly/ https://www.cs.
阅读全文
posted @ 2020-04-11 21:42 通杀
阅读(232)
评论(0)
推荐(0)
2020年4月8日
git
摘要: git branch -r --contains commit 查看commit 属于哪个分支 git log --graph --all 所有分支log 最新
阅读全文
posted @ 2020-04-08 09:52 通杀
阅读(139)
评论(0)
推荐(0)
2020年4月7日
tensorflow
摘要: 获取权重 https://blog.csdn.net/shwan_ma/article/details/78874881 https://blog.csdn.net/u013243986/article/details/77333887 https://blog.csdn.net/AManFromE
阅读全文
posted @ 2020-04-07 18:36 通杀
阅读(91)
评论(0)
推荐(0)
gcc options
摘要: https://gcc.gnu.org/onlinedocs/gcc/Invoking-GCC.html#Invoking-GCC
阅读全文
posted @ 2020-04-07 17:12 通杀
阅读(106)
评论(0)
推荐(0)
上一页
1
2
3
4
下一页
公告
昵称:
通杀
园龄:
13年2个月
粉丝:
3
关注:
0
<
2025年6月
>
日
一
二
三
四
五
六
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
1
2
3
4
5
6
7
8
9
10
11
12
搜索
常用链接
我的随笔
我的评论
我的参与
最新评论
我的标签
随笔分类
algorithem(5)
mysql(2)
R(1)
随笔档案
2021年11月(3)
2021年7月(3)
2021年6月(1)
2021年4月(1)
2021年3月(2)
2020年12月(1)
2020年6月(1)
2020年4月(8)
2020年3月(3)
2013年5月(1)
2013年3月(6)
2012年3月(1)
阅读排行榜
1. url 记录(1988)
2. JJ数据(1064)
3. 堆栈平衡(662)
4. const 值被更改的问题(629)
5. at&a 64汇编(299)
点击右上角即可分享