/external/clang/test/CodeGen/ |
BasicInstrs.c | 9 int sdiv(int X, int Y) { function
|
/external/chromium_org/third_party/openssl/openssl/crypto/bn/ |
bn_div.c | 185 BIGNUM *tmp,wnum,*snum,*sdiv,*res; local 229 sdiv=BN_CTX_get(ctx); 233 if (sdiv == NULL || res == NULL || tmp == NULL || snum == NULL) 238 if (!(BN_lshift(sdiv,divisor,norm_shift))) goto err; 239 sdiv->neg=0; 246 /* Since we don't know whether snum is larger than sdiv, 250 if (snum->top <= sdiv->top+1) 252 if (bn_wexpand(snum, sdiv->top + 2) == NULL) goto err; 253 for (i = snum->top; i < sdiv->top + 2; i++) snum->d[i] = 0; 254 snum->top = sdiv->top + 2 [all...] |
/external/openssl/crypto/bn/ |
bn_div.c | 185 BIGNUM *tmp,wnum,*snum,*sdiv,*res; local 229 sdiv=BN_CTX_get(ctx); 233 if (sdiv == NULL || res == NULL || tmp == NULL || snum == NULL) 238 if (!(BN_lshift(sdiv,divisor,norm_shift))) goto err; 239 sdiv->neg=0; 246 /* Since we don't know whether snum is larger than sdiv, 250 if (snum->top <= sdiv->top+1) 252 if (bn_wexpand(snum, sdiv->top + 2) == NULL) goto err; 253 for (i = snum->top; i < sdiv->top + 2; i++) snum->d[i] = 0; 254 snum->top = sdiv->top + 2 [all...] |
/external/qemu/target-arm/ |
helper.c | 538 int32_t HELPER(sdiv)(int32_t num, int32_t den) function [all...] |