摘要: volatile关键字 转自:http://www.cnblogs.com/dolphin0520/p/3920373.html volatile这个关键字可能很多朋友都听说过,或许也都用过。在Java 5之前,它是一个备受争议的关键字,因为在程序中使用它往往会导致出人意料的结果。在Java 5之后 阅读全文
posted @ 2020-03-20 11:14 zJanly 阅读(414) 评论(0) 推荐(0) 编辑
摘要: void f34(int &__restrict__ a, int & b, int &__restrict__ c){ a += c; b += c;}void f35(int & a, int & b, int & c){ a += c; b += c;} 0000000000000020 <_ 阅读全文
posted @ 2020-03-20 10:58 zJanly 阅读(250) 评论(0) 推荐(0) 编辑
摘要: void f(int *a, int *b, int *c){ *a += *c; *b += *c;}void f2(int *__restrict__ a, int* b, int* __restrict__ c){ *a += *c; *b += *c;} Disassembly of sec 阅读全文
posted @ 2020-03-20 10:55 zJanly 阅读(137) 评论(0) 推荐(0) 编辑
摘要: GCC在C语言中内嵌汇编-转载 http://hi.baidu.com/liu_bin0101/blog/item/433103007852b216738b658d.html 在内嵌汇编中,可以将C语言表达式指定为汇编指令的操作数,而且不用去管如何将C语言表达式的值读入哪个寄存器,以及如何将计算结果 阅读全文
posted @ 2020-03-20 10:39 zJanly 阅读(567) 评论(0) 推荐(0) 编辑
摘要: 本文介绍了GCC和C99标准中inline使用上的不同之处。inline属性在使用的时候,要注意以下两点:inline关键字在GCC参考文档中仅有对其使用在函数定义(Definition)上的描述,而没有提到其是否能用于函数声明(Declare)。 从 inline的作用来看,其放置于函数声明中应当 阅读全文
posted @ 2020-03-20 10:00 zJanly 阅读(549) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/wu_tongtong/article/details/79669723 (很久)之前就已经接触过CRT 我们先看简单的CRT x≡a1 (mod m1) x≡a2 (mod m2) x≡a3 (mod m3) ... x≡ak (mod mk) 其中m1 阅读全文
posted @ 2020-03-19 15:29 zJanly 阅读(161) 评论(0) 推荐(0) 编辑
摘要: The Chinese Remainder Theorem On this page we look at the Chinese Remainder Theorem (CRT), Gauss's algorithm to solve simultaneous linear congruences, 阅读全文
posted @ 2020-03-19 15:27 zJanly 阅读(239) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/Kalafinaian/p/7392505.html 椭圆曲线加密中的加法乘法浅析 云勺 0.0962018.05.17 23:19:39字数 1,429阅读 4,686 本文不深入椭圆曲线加密算法的全部知识,只针对椭圆曲线加密中需要用到的加法和乘法计 阅读全文
posted @ 2020-03-18 16:55 zJanly 阅读(1334) 评论(0) 推荐(0) 编辑
摘要: .file "main.cpp" .text .globl _Z1f1Aicxiiii .type _Z1f1Aicxiiii, @function_Z1f1Aicxiiii:.LFB0: .cfi_startproc pushq %rbp .cfi_def_cfa_offset 16 .cfi_o 阅读全文
posted @ 2020-03-17 16:15 zJanly 阅读(207) 评论(0) 推荐(0) 编辑
摘要: X86-64寄存器和栈帧 转载 云飞扬N 最后发布于2015-10-15 16:40:56 阅读数 23533 收藏 展开 http://www.searchtb.com/2013/03/x86-64_register_and_function_frame.html 概要 说到x86-64,总不免要 阅读全文
posted @ 2020-03-17 16:13 zJanly 阅读(289) 评论(0) 推荐(0) 编辑