亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? vdbe.c

?? sqlite庫
?? C
?? 第 1 頁 / 共 5 頁
字號:
** to integers.  Push back onto the stack the second element shifted** right by N bits where N is the top element on the stack.** If either operand is NULL, the result is NULL.*/case OP_BitAnd:                 /* same as TK_BITAND, no-push */case OP_BitOr:                  /* same as TK_BITOR, no-push */case OP_ShiftLeft:              /* same as TK_LSHIFT, no-push */case OP_ShiftRight: {           /* same as TK_RSHIFT, no-push */  Mem *pNos = &pTos[-1];  i64 a, b;  assert( pNos>=p->aStack );  if( (pTos->flags | pNos->flags) & MEM_Null ){    popStack(&pTos, 2);    pTos++;    pTos->flags = MEM_Null;    break;  }  a = sqlite3VdbeIntValue(pNos);  b = sqlite3VdbeIntValue(pTos);  switch( pOp->opcode ){    case OP_BitAnd:      a &= b;     break;    case OP_BitOr:       a |= b;     break;    case OP_ShiftLeft:   a <<= b;    break;    case OP_ShiftRight:  a >>= b;    break;    default:   /* CANT HAPPEN */     break;  }  Release(pTos);  pTos--;  Release(pTos);  pTos->i = a;  pTos->flags = MEM_Int;  break;}/* Opcode: AddImm  P1 * *** ** Add the value P1 to whatever is on top of the stack.  The result** is always an integer.**** To force the top of the stack to be an integer, just add 0.*/case OP_AddImm: {            /* no-push */  assert( pTos>=p->aStack );  sqlite3VdbeMemIntegerify(pTos);  pTos->i += pOp->p1;  break;}/* Opcode: ForceInt P1 P2 ***** Convert the top of the stack into an integer.  If the current top of** the stack is not numeric (meaning that is is a NULL or a string that** does not look like an integer or floating point number) then pop the** stack and jump to P2.  If the top of the stack is numeric then** convert it into the least integer that is greater than or equal to its** current value if P1==0, or to the least integer that is strictly** greater than its current value if P1==1.*/case OP_ForceInt: {            /* no-push */  i64 v;  assert( pTos>=p->aStack );  applyAffinity(pTos, SQLITE_AFF_NUMERIC, encoding);  if( (pTos->flags & (MEM_Int|MEM_Real))==0 ){    Release(pTos);    pTos--;    pc = pOp->p2 - 1;    break;  }  if( pTos->flags & MEM_Int ){    v = pTos->i + (pOp->p1!=0);  }else{    /* FIX ME:  should this not be assert( pTos->flags & MEM_Real ) ??? */    sqlite3VdbeMemRealify(pTos);    v = (int)pTos->r;    if( pTos->r>(double)v ) v++;    if( pOp->p1 && pTos->r==(double)v ) v++;  }  Release(pTos);  pTos->i = v;  pTos->flags = MEM_Int;  break;}/* Opcode: MustBeInt P1 P2 *** ** Force the top of the stack to be an integer.  If the top of the** stack is not an integer and cannot be converted into an integer** with out data loss, then jump immediately to P2, or if P2==0** raise an SQLITE_MISMATCH exception.**** If the top of the stack is not an integer and P2 is not zero and** P1 is 1, then the stack is popped.  In all other cases, the depth** of the stack is unchanged.*/case OP_MustBeInt: {            /* no-push */  assert( pTos>=p->aStack );  applyAffinity(pTos, SQLITE_AFF_NUMERIC, encoding);  if( (pTos->flags & MEM_Int)==0 ){    if( pOp->p2==0 ){      rc = SQLITE_MISMATCH;      goto abort_due_to_error;    }else{      if( pOp->p1 ) popStack(&pTos, 1);      pc = pOp->p2 - 1;    }  }else{    Release(pTos);    pTos->flags = MEM_Int;  }  break;}/* Opcode: RealAffinity * * ***** If the top of the stack is an integer, convert it to a real value.**** This opcode is used when extracting information from a column that** has REAL affinity.  Such column values may still be stored as** integers, for space efficiency, but after extraction we want them** to have only a real value.*/case OP_RealAffinity: {                  /* no-push */  assert( pTos>=p->aStack );  if( pTos->flags & MEM_Int ){    sqlite3VdbeMemRealify(pTos);  }  break;}#ifndef SQLITE_OMIT_CAST/* Opcode: ToText * * ***** Force the value on the top of the stack to be text.** If the value is numeric, convert it to a string using the** equivalent of printf().  Blob values are unchanged and** are afterwards simply interpreted as text.**** A NULL value is not changed by this routine.  It remains NULL.*/case OP_ToText: {                  /* same as TK_TO_TEXT, no-push */  assert( pTos>=p->aStack );  if( pTos->flags & MEM_Null ) break;  assert( MEM_Str==(MEM_Blob>>3) );  pTos->flags |= (pTos->flags&MEM_Blob)>>3;  applyAffinity(pTos, SQLITE_AFF_TEXT, encoding);  assert( pTos->flags & MEM_Str );  pTos->flags &= ~(MEM_Int|MEM_Real|MEM_Blob);  break;}/* Opcode: ToBlob * * ***** Force the value on the top of the stack to be a BLOB.** If the value is numeric, convert it to a string first.** Strings are simply reinterpreted as blobs with no change** to the underlying data.**** A NULL value is not changed by this routine.  It remains NULL.*/case OP_ToBlob: {                  /* same as TK_TO_BLOB, no-push */  assert( pTos>=p->aStack );  if( pTos->flags & MEM_Null ) break;  if( (pTos->flags & MEM_Blob)==0 ){    applyAffinity(pTos, SQLITE_AFF_TEXT, encoding);    assert( pTos->flags & MEM_Str );    pTos->flags |= MEM_Blob;  }  pTos->flags &= ~(MEM_Int|MEM_Real|MEM_Str);  break;}/* Opcode: ToNumeric * * ***** Force the value on the top of the stack to be numeric (either an** integer or a floating-point number.)** If the value is text or blob, try to convert it to an using the** equivalent of atoi() or atof() and store 0 if no such conversion ** is possible.**** A NULL value is not changed by this routine.  It remains NULL.*/case OP_ToNumeric: {                  /* same as TK_TO_NUMERIC, no-push */  assert( pTos>=p->aStack );  if( (pTos->flags & MEM_Null)==0 ){    sqlite3VdbeMemNumerify(pTos);  }  break;}#endif /* SQLITE_OMIT_CAST *//* Opcode: ToInt * * ***** Force the value on the top of the stack to be an integer.  If** The value is currently a real number, drop its fractional part.** If the value is text or blob, try to convert it to an integer using the** equivalent of atoi() and store 0 if no such conversion is possible.**** A NULL value is not changed by this routine.  It remains NULL.*/case OP_ToInt: {                  /* same as TK_TO_INT, no-push */  assert( pTos>=p->aStack );  if( (pTos->flags & MEM_Null)==0 ){    sqlite3VdbeMemIntegerify(pTos);  }  break;}#ifndef SQLITE_OMIT_CAST/* Opcode: ToReal * * ***** Force the value on the top of the stack to be a floating point number.** If The value is currently an integer, convert it.** If the value is text or blob, try to convert it to an integer using the** equivalent of atoi() and store 0 if no such conversion is possible.**** A NULL value is not changed by this routine.  It remains NULL.*/case OP_ToReal: {                  /* same as TK_TO_REAL, no-push */  assert( pTos>=p->aStack );  if( (pTos->flags & MEM_Null)==0 ){    sqlite3VdbeMemRealify(pTos);  }  break;}#endif /* SQLITE_OMIT_CAST *//* Opcode: Eq P1 P2 P3**** Pop the top two elements from the stack.  If they are equal, then** jump to instruction P2.  Otherwise, continue to the next instruction.**** If the 0x100 bit of P1 is true and either operand is NULL then take the** jump.  If the 0x100 bit of P1 is clear then fall thru if either operand** is NULL.**** If the 0x200 bit of P1 is set and either operand is NULL then** both operands are converted to integers prior to comparison.** NULL operands are converted to zero and non-NULL operands are** converted to 1.  Thus, for example, with 0x200 set,  NULL==NULL is true** whereas it would normally be NULL.  Similarly,  NULL==123 is false when** 0x200 is set but is NULL when the 0x200 bit of P1 is clear.**** The least significant byte of P1 (mask 0xff) must be an affinity character -** SQLITE_AFF_TEXT, SQLITE_AFF_INTEGER, and so forth. An attempt is made ** to coerce both values** according to the affinity before the comparison is made. If the byte is** 0x00, then numeric affinity is used.**** Once any conversions have taken place, and neither value is NULL, ** the values are compared. If both values are blobs, or both are text,** then memcmp() is used to determine the results of the comparison. If** both values are numeric, then a numeric comparison is used. If the** two values are of different types, then they are inequal.**** If P2 is zero, do not jump.  Instead, push an integer 1 onto the** stack if the jump would have been taken, or a 0 if not.  Push a** NULL if either operand was NULL.**** If P3 is not NULL it is a pointer to a collating sequence (a CollSeq** structure) that defines how to compare text.*//* Opcode: Ne P1 P2 P3**** This works just like the Eq opcode except that the jump is taken if** the operands from the stack are not equal.  See the Eq opcode for** additional information.*//* Opcode: Lt P1 P2 P3**** This works just like the Eq opcode except that the jump is taken if** the 2nd element down on the stack is less than the top of the stack.** See the Eq opcode for additional information.*//* Opcode: Le P1 P2 P3**** This works just like the Eq opcode except that the jump is taken if** the 2nd element down on the stack is less than or equal to the** top of the stack.  See the Eq opcode for additional information.*//* Opcode: Gt P1 P2 P3**** This works just like the Eq opcode except that the jump is taken if** the 2nd element down on the stack is greater than the top of the stack.** See the Eq opcode for additional information.*//* Opcode: Ge P1 P2 P3**** This works just like the Eq opcode except that the jump is taken if** the 2nd element down on the stack is greater than or equal to the** top of the stack.  See the Eq opcode for additional information.*/case OP_Eq:               /* same as TK_EQ, no-push */case OP_Ne:               /* same as TK_NE, no-push */case OP_Lt:               /* same as TK_LT, no-push */case OP_Le:               /* same as TK_LE, no-push */case OP_Gt:               /* same as TK_GT, no-push */case OP_Ge: {             /* same as TK_GE, no-push */  Mem *pNos;  int flags;  int res;  char affinity;  pNos = &pTos[-1];  flags = pTos->flags|pNos->flags;  /* If either value is a NULL P2 is not zero, take the jump if the least  ** significant byte of P1 is true. If P2 is zero, then push a NULL onto  ** the stack.  */  if( flags&MEM_Null ){    if( (pOp->p1 & 0x200)!=0 ){      /* The 0x200 bit of P1 means, roughly "do not treat NULL as the      ** magic SQL value it normally is - treat it as if it were another      ** integer".      **      ** With 0x200 set, if either operand is NULL then both operands      ** are converted to integers prior to being passed down into the      ** normal comparison logic below.  NULL operands are converted to      ** zero and non-NULL operands are converted to 1.  Thus, for example,      ** with 0x200 set,  NULL==NULL is true whereas it would normally      ** be NULL.  Similarly,  NULL!=123 is true.      */      sqlite3VdbeMemSetInt64(pTos, (pTos->flags & MEM_Null)==0);      sqlite3VdbeMemSetInt64(pNos, (pNos->flags & MEM_Null)==0);    }else{      /* If the 0x200 bit of P1 is clear and either operand is NULL then      ** the result is always NULL.  The jump is taken if the 0x100 bit      ** of P1 is set.      */      popStack(&pTos, 2);      if( pOp->p2 ){        if( pOp->p1 & 0x100 ){          pc = pOp->p2-1;        }      }else{        pTos++;        pTos->flags = MEM_Null;      }      break;    }  }  affinity = pOp->p1 & 0xFF;  if( affinity ){    applyAffinity(pNos, affinity, encoding);    applyAffinity(pTos, affinity, encoding);  }  assert( pOp->p3type==P3_COLLSEQ || pOp->p3==0 );  res = sqlite3MemCompare(pNos, pTos, (CollSeq*)pOp->p3);  switch( pOp->opcode ){    case OP_Eq:    res = res==0;     break;    case OP_Ne:    res = res!=0;     break;    case OP_Lt:    res = res<0;      break;    case OP_Le:    res = res<=0;     break;    case OP_Gt:    res = res>0;      break;    default:       res = res>=0;     break;  }  popStack(&pTos, 2);  if( pOp->p2 ){    if( res ){      pc = pOp->p2-1;    }  }else{    pTos++;    pTos->flags = MEM_Int;    pTos->i = res;  }  break;}/* Opcode: And * * ***** Pop two values off the stack.  Take the logical AND of the** two values and push the resulting boolean value back onto the** stack. *//* Opcode: Or * * ***** Pop two values off the stack.  Take the logical OR of the** two values and push the resulting boolean value back onto the** stack. */case OP_And:              /* same as TK_AND, no-push */case OP_Or: {             /* same as TK_OR, no-push */  Mem *pNos = &pTos[-1];  int v1, v2;    /* 0==TRUE, 1==FALSE, 2==UNKNOWN or NULL */  assert( pNos>=p->aStack );  if( pTos->flags & MEM_Null ){    v1 = 2;  }else{    sqlite3VdbeMemIntegerify(pTos);    v1 = pTos->i==0;  }  if( pNos->flags & MEM_Null ){    v2 = 2;  }else{    sqlite3VdbeMemIntegerify(pNos);    v2 = pNos->i==0;  }  if( pOp->opcode==OP_And ){    static const unsigned char and_logic[] = { 0, 1, 2, 1, 1, 1, 2, 1, 2 };    v1 = and_logic[v1*3+v2];  }else{    static const unsigned char or_logic[] = { 0, 0, 0, 0, 1, 2, 0, 2, 2 };    v1 = or_logic[v1*3+v2];  }  popStack(&pTos, 2);  pTos++;  if( v1==2 ){    pTos->flags = MEM_Null;  }else{    pTos->i = v1==0;    pTos->flags = MEM_Int;  }  break;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产成人小视频| 奇米色777欧美一区二区| 懂色av中文一区二区三区| 久久久久久亚洲综合| 国产美女在线精品| 国产精品欧美经典| 色综合欧美在线| 亚洲国产wwwccc36天堂| 欧美男男青年gay1069videost| 天涯成人国产亚洲精品一区av| 日韩欧美色综合| 成人免费视频播放| 亚洲精品视频一区二区| 欧美精品在线观看一区二区| 蜜臀av性久久久久蜜臀aⅴ流畅| 国产亚洲自拍一区| 色综合天天视频在线观看 | 欧美色综合网站| 日本午夜精品视频在线观看 | 成人高清视频在线| 日韩美女视频19| 777奇米四色成人影色区| 国产精品一二三四| 一区二区国产盗摄色噜噜| 日韩一区二区免费在线观看| 成人免费毛片app| 亚洲高清视频在线| 久久久久久久久久久久电影| 91黄色激情网站| 久久66热偷产精品| 亚洲在线一区二区三区| 日韩免费在线观看| 91久久精品一区二区三| 国产一区视频在线看| 亚洲在线视频一区| 国产亚洲女人久久久久毛片| 欧美日本视频在线| 成人aaaa免费全部观看| 免费xxxx性欧美18vr| 日韩毛片精品高清免费| 精品美女在线播放| 欧美日韩一区在线观看| 成人丝袜视频网| 麻豆国产一区二区| 亚洲午夜电影在线观看| 国产精品视频观看| 精品国产3级a| 欧美人牲a欧美精品| 99精品视频中文字幕| 国产真实乱偷精品视频免| 亚洲风情在线资源站| 中文字幕乱码久久午夜不卡| 日韩一级片网站| 欧美日韩精品一区二区天天拍小说 | 亚洲欧美二区三区| 国产日本亚洲高清| 欧美不卡激情三级在线观看| 91久久一区二区| 欧美色视频一区| www.亚洲色图| 国产精品白丝jk黑袜喷水| 另类综合日韩欧美亚洲| 日韩电影在线观看电影| 亚洲一二三专区| 一区二区高清视频在线观看| 国产精品高清亚洲| 国产精品你懂的| 国产欧美视频一区二区三区| 久久久久88色偷偷免费 | 欧美tickling网站挠脚心| 欧美日韩国产免费| 欧美日韩国产综合一区二区| 欧美中文字幕一区| 精品婷婷伊人一区三区三| 在线视频一区二区三| 91久久精品一区二区| 日本高清不卡在线观看| 91福利在线免费观看| 91丨九色丨黑人外教| 99亚偷拍自图区亚洲| 99久久精品免费看| 97国产精品videossex| 波多野结衣视频一区| 91网上在线视频| 91免费国产视频网站| 91久久线看在观草草青青| 欧洲一区二区av| 欧美日本不卡视频| 精品国产乱码久久久久久牛牛| 欧美精品一区二区三区四区| 久久婷婷国产综合精品青草| 欧美国产综合一区二区| 亚洲美女偷拍久久| 午夜精品一区二区三区免费视频| 日韩av在线发布| 国产又黄又大久久| 国产91对白在线观看九色| 91麻豆成人久久精品二区三区| 欧美三级午夜理伦三级中视频| 日韩网站在线看片你懂的| 久久综合九色综合97婷婷| 国产精品视频第一区| 一区二区日韩电影| 麻豆成人在线观看| jlzzjlzz亚洲女人18| 欧美视频中文字幕| 精品日韩在线一区| 国产精品欧美极品| 亚洲成av人综合在线观看| 精品一区二区免费看| 成人高清在线视频| 91麻豆精品国产自产在线| 国产欧美日本一区视频| 亚洲精品免费在线播放| 日本aⅴ精品一区二区三区| 国产乱码精品一区二区三区av | 中文字幕va一区二区三区| 亚洲精品久久嫩草网站秘色| 紧缚捆绑精品一区二区| 91在线小视频| 精品国产乱码久久久久久1区2区 | 蜜臀av国产精品久久久久| 成人午夜视频在线观看| 欧美日本视频在线| 国产精品情趣视频| 日本vs亚洲vs韩国一区三区二区 | 精品视频一区 二区 三区| 久久久影院官网| 亚洲国产另类av| 成人av中文字幕| 精品理论电影在线观看| 亚洲一二三四在线| 春色校园综合激情亚洲| 日韩欧美的一区| 亚洲一区日韩精品中文字幕| 风间由美一区二区三区在线观看 | 中文在线资源观看网站视频免费不卡| 亚洲欧美日韩中文播放| 国产一区二区在线观看免费| 欧美久久一二区| 一区二区日韩av| yourporn久久国产精品| 国产午夜亚洲精品羞羞网站| 日日嗨av一区二区三区四区| 日本精品视频一区二区| 国产精品乱码妇女bbbb| 国产精品小仙女| 精品国产乱码久久久久久影片| 日韩国产精品久久久久久亚洲| 色94色欧美sute亚洲线路一ni| 中文字幕不卡在线观看| 国内欧美视频一区二区| 欧美一区二区三区电影| 亚洲成人激情自拍| 欧美三片在线视频观看| 亚洲精品一二三四区| 99久久er热在这里只有精品66| 国产精品欧美一区喷水| 成人一区二区三区视频| 国产精品情趣视频| 成人sese在线| 亚洲欧洲av在线| av在线这里只有精品| 亚洲欧洲一区二区在线播放| 99re亚洲国产精品| 亚洲男人天堂一区| 色伊人久久综合中文字幕| 亚洲视频免费在线| 91久久精品一区二区| 亚洲影视在线播放| 在线视频中文字幕一区二区| 一区二区免费看| 欧美日韩一区成人| 青青草国产成人av片免费| 日韩一二三区视频| 久久99久久久久久久久久久| 欧美成人video| 国产91精品入口| 亚洲欧美日韩一区| 欧美性猛交xxxxxx富婆| 调教+趴+乳夹+国产+精品| 日韩一区二区三区高清免费看看 | 国产精品毛片大码女人| 91在线观看美女| 亚洲影视在线观看| 久久丝袜美腿综合| av电影一区二区| 夜夜嗨av一区二区三区四季av| 欧美剧情片在线观看| 久草在线在线精品观看| 欧美韩国日本综合| 在线观看网站黄不卡| 奇米影视一区二区三区小说| 精品入口麻豆88视频| 波多野结衣欧美| 石原莉奈在线亚洲三区| 久久只精品国产| 色狠狠色狠狠综合| 久久99在线观看| 亚洲欧洲www|