码迷,mamicode.com
首页 > 其他好文 > 详细

strlen实现

时间:2017-04-12 04:16:27      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:bsp   gic   size_t   color   log   code   while   unsigned   bits32   

size_t my_strlen(const char* str)
{
    const char* ptr = str;
    for (; ((int)ptr & 0x03) != 0; ++ptr)
    {
        if (*ptr == \0)
            return ptr - str;
    }

    unsigned int* ptr_d = (unsigned int*)ptr;
    unsigned int magic = 0x7efefeff;
    //01111110    11111110    11111110     11111111 

    while (true)
    {
        unsigned int bits32 = *ptr_d++;
        if ((((bits32 + magic) ^ (bits32 ^ -1)) & ~magic) != 0) // bits32 ^ -1 等价于 ~bits32
        {
            ptr = (const char*)(ptr_d - 1);
            if (ptr[0] == 0)
                return ptr - str;
            if (ptr[1] == 0)
                return ptr - str + 1;
            if (ptr[2] == 0)
                return ptr - str + 2;
            if (ptr[3] == 0)
                return ptr - str + 3;
        }
    }
}

 

strlen实现

标签:bsp   gic   size_t   color   log   code   while   unsigned   bits32   

原文地址:http://www.cnblogs.com/yifi/p/6696291.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!