码迷,mamicode.com
首页 >  
搜索关键字:asm move    ( 7986个结果
LeetCode: Triangle 题解
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, given the fol...
分类:其他好文   时间:2014-05-08 21:08:25    阅读次数:407
汇编语言
http://www.feiesoft.com/asm/
分类:编程语言   时间:2014-05-07 20:15:31    阅读次数:231
ASM_PREFERRED_READ_FAILURE_GROUPS
最近有一些客户有这样一个需求,一个ASM磁盘组中分别挂载不同性能的存储或磁盘。希望ASM在读取的时候,优先读取性能好的磁盘,性能差的磁盘更多的是扮演‘standby‘的角色。oracle提供一个参数ASM_PREFERRED_READ_FAILURE_GROUPS,来实现ASM优先读取的功能,但是以FAILURE_GROUP..
分类:其他好文   时间:2014-05-07 15:28:30    阅读次数:330
linux 中常用的一些头文件
#include 是在linux-2.6.29/include/linux下面寻找源文件。#include 是在linux-2.6.29/arch/arm/include/asm下面寻找源文件。#include 是在linux-2.6.29/arch/arm/mach-s3c2410/incl...
分类:系统相关   时间:2014-05-07 14:06:31    阅读次数:421
mutiple cycle cpu (转)
言简意赅A single instruction enters the CPU at the Fetch stage and the PC is incremented in one clock cycle. In the next clock cycle, the instruction move...
分类:其他好文   时间:2014-05-07 11:23:20    阅读次数:417
有着非同寻常配色的网页设计
现代网站设计的配色方案,除了一些简约网站界面设计常常使用灰色与白色,其他网站大多以白色为背景,再搭配其他颜色。然而,在蓝蓝设计这个展示中,我们可以看到有一些非常有冒险精神的UI设计师混合了一些不寻常的色彩。这种UI设计你可能从来都没想过,但它们都看起来非常完美,来学习一下吧。 TriplAgent Designed To Move Lowdi Always Cr...
分类:Web程序   时间:2014-05-07 06:09:02    阅读次数:343
《linux 内核完全剖析》get_free_page(void)
unsigned long get_free_page(void) { register unsigned long __res asm("ax"); repeat:     __asm__("std ; repne ; scasb\n\t"         "jne 1f\n\t"         "movb $1,1(%%edi)\n\t"         "sall $12...
分类:系统相关   时间:2014-05-07 05:38:18    阅读次数:515
递归法求解汉罗塔hanoi问题
#include using namespace std; //汉罗塔递归求解函数 从a移到c void move(int m,char a,char c); void hanoi(int n,char a,char b,char c) { if(1==n) { move(n,a,c); return; } hanoi(n-1,a,c,b); move(n,a,c); hano...
分类:其他好文   时间:2014-05-07 03:24:14    阅读次数:228
Leetcode | Triangle
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, given the fol...
分类:其他好文   时间:2014-05-07 02:55:24    阅读次数:377
codechef Correctness of Knight Move题解
Chef develops his own computer program for playing chess. He is at the very beginning. At first he needs to write the module that will receive moves written by the players and analyze it. The module w...
分类:其他好文   时间:2014-05-06 23:11:26    阅读次数:497
7986条   上一页 1 ... 795 796 797 798 799 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!