/external/icu4c/tools/gennorm/ |
store.c | 78 { 0x4e, 0x6f, 0x72, 0x6d }, /* dataFormat="Norm" */ 97 typedef void EnumTrieFn(void *context, uint32_t code, Norm *norm); 107 static Norm *norms; 156 /* allocate and initialize a Norm unit */ 157 static Norm * 159 /* allocate Norm */ 160 Norm *p=(Norm *)utm_alloc(normMem); 188 /* allocate Norm structures and reset the first one * 258 Norm *norm=getNorm(code); local 702 Norm *norm; member in struct:DecompSingle 891 Norm *norm; local 1624 Norm *norm; local [all...] |
gennorm.h | 31 typedef struct Norm { 40 } Norm; 75 storeNorm(uint32_t code, Norm *norm);
|
gennorm.c | 427 Norm norm; local 443 uprv_memset(&norm, 0, sizeof(Norm)); 449 norm.combiningIndex=0xffff; 467 norm.udataCC=(uint8_t)value; 502 norm.lenNFKD=(uint8_t)length; 503 norm.nfkd=decomp; 511 norm.lenNFD=(uint8_t)length; 512 norm.nfd=decomp [all...] |
/external/svox/pico/lib/ |
picosig2.c | 1007 picoos_int32 *norm; local [all...] |
/external/icu4c/test/intltest/ |
tstnrapi.cpp | 27 Normalizer norm(iter, UNORM_NFC); 28 if(norm.next()!=0xe4) { 33 Normalizer copy(norm); 75 norm.setIndexOnly(3); 76 if(norm.current()!=0x4e3d) { 135 norm.setMode(UNORM_NONE); 136 if(norm.first()!=0x61 || norm.next()!=0x308 || norm.last()!=0x2f800) {
|
/external/webkit/SunSpider/tests/sunspider-0.9/ |
LIST | 20 math-spectral-norm
|
/external/webkit/SunSpider/tests/sunspider-0.9.1/ |
LIST | 20 math-spectral-norm
|
/development/samples/GlobalTime/src/com/android/globaltime/ |
LatLongSphere.java | 83 float norm = 1.0f / Shape.length(x, y, z); local 84 normals[nidx++] = toFixed(x * norm); 85 normals[nidx++] = toFixed(y * norm); 86 normals[nidx++] = toFixed(z * norm);
|
Shape.java | 126 float norm = 1.0f / length; local 127 v[0] *= norm; 128 v[1] *= norm; 129 v[2] *= norm;
|
/external/webkit/WebCore/platform/graphics/skia/ |
ImageSkia.cpp | 269 FloatRect norm = rect; local 270 if (norm.width() < 0) { 271 norm.setX(norm.x() + norm.width()); 272 norm.setWidth(-norm.width()); 274 if (norm.height() < 0) { 275 norm.setY(norm.y() + norm.height()) [all...] |
/system/core/toolbox/ |
vmstat.c | 222 #define NORM(var) ((var) = (((var) > 99) ? (99) : (var))) 226 us = JP(new->cpu_us - old->cpu_us); NORM(us); 227 ni = JP(new->cpu_ni - old->cpu_ni); NORM(ni); 228 sy = JP(new->cpu_sy - old->cpu_sy); NORM(sy); 229 id = JP(new->cpu_id - old->cpu_id); NORM(id); 230 wa = JP(new->cpu_wa - old->cpu_wa); NORM(wa); 231 ir = JP(new->cpu_ir - old->cpu_ir); NORM(ir);
|
/external/dropbear/libtommath/ |
bn_mp_div.c | 106 int res, n, t, i, norm, neg; local 152 norm = mp_count_bits(&y) % DIGIT_BIT; 153 if (norm < (int)(DIGIT_BIT-1)) { 154 norm = (DIGIT_BIT-1) - norm; 155 if ((res = mp_mul_2d (&x, norm, &x)) != MP_OKAY) { 158 if ((res = mp_mul_2d (&y, norm, &y)) != MP_OKAY) { 162 norm = 0; 272 if ((res = mp_div_2d (&x, norm, &x, NULL)) != MP_OKAY) {
|
/hardware/broadcom/wlan/bcm4329/src/bcmsdio/sys/ |
bcmsdstd_linux.c | 218 sdstd_waitbits(sdioh_info_t *sd, uint16 norm, uint16 err, bool yield) 228 __FUNCTION__, norm, err, yield, BLOCKABLE())); 237 sdstd_intrs_on(sd, norm, err); 239 sdstd_intrs_off(sd, norm, err); 243 sdstd_spinbits(sd, norm, err);
|
/dalvik/libcore/luni/src/main/java/java/util/ |
Random.java | 183 double norm = Math.sqrt(-2 * Math.log(s) / s); local 184 nextNextGaussian = v2 * norm; // should that not be norm instead 187 return v1 * norm; // should that not be norm instead of multiplier
|
/external/neven/Embedded/common/src/b_BasicEm/ |
Math.h | 149 /** returns floating point squared norm of 32 bit vector (maximum accuracy - overflow-safe); 151 * returned square norm = man * 2^exp 156 /** returns floating point squared norm of 16 bit vector (maximum accuracy - overflow-safe); 157 * returned square norm = man * 2^exp 162 /** returns the norm of a 16 bit vector;
|
/external/opencore/codecs_v2/audio/gsm_amr/amr_nb/enc/src/ |
autocorr.cpp | 171 norm = normalized autocorrelation at lag zero of type Word16 207 Word16 i, j, norm; 252 norm = norm_l (sum); 253 sum = L_shl (sum, norm); 267 sum = L_shl (sum, norm); 271 norm = sub (norm, overfl_shft); 273 return norm; 311 register Word16 norm; local 414 norm = norm_l(sum) 416 sum <<= norm; local [all...] |
/frameworks/base/media/libstagefright/codecs/amrnb/enc/src/ |
autocorr.cpp | 171 norm = normalized autocorrelation at lag zero of type Word16 207 Word16 i, j, norm; 252 norm = norm_l (sum); 253 sum = L_shl (sum, norm); 267 sum = L_shl (sum, norm); 271 norm = sub (norm, overfl_shft); 273 return norm; 311 register Word16 norm; local 414 norm = norm_l(sum) 416 sum <<= norm; local [all...] |
/frameworks/base/graphics/java/android/renderscript/ |
Element.java | 233 Element(RenderScript rs, DataType dt, DataKind dk, boolean norm, int size) { 238 mNormalized = norm; 240 mID = rs.nElementCreate(dt.mID, dk.mID, norm, size); 327 boolean norm = false; 329 norm = true; 332 return new Element(rs, dt, dk, norm, size);
|
/external/srec/srec/crec/ |
get_fram.c | 438 void convert_adjustment_to_imelda(norm_info *norm, preprocessed *prep) 444 ASSERT(norm); 446 fram[ii] = (imeldata) norm->adjust[ii]; /* TODO: review types */ 453 norm->imelda_adjust[ii] = fram[ii]; 455 log_report("NORM AUX: "); 456 for (ii = 0; ii < norm->dim; ii++) 457 log_report("%d ", (int)norm->imelda_adjust[ii]); 460 norm->adj_valid = True;
|
/frameworks/base/libs/rs/ |
rsComponent.h | 34 void set(RsDataType dt, RsDataKind dk, bool norm, uint32_t vecSize=1);
|
rsElement.cpp | 225 bool norm, 228 //LOGE("rsi_ElementCreate %i %i %i %i", dt, dk, norm, vecSize); 229 const Element *e = Element::create(rsc, dt, dk, norm, vecSize);
|
/hardware/broadcom/wlan/bcm4329/src/include/ |
bcmsdstd.h | 199 extern void sdstd_intrs_on(sdioh_info_t *sd, uint16 norm, uint16 err); 200 extern void sdstd_intrs_off(sdioh_info_t *sd, uint16 norm, uint16 err); 203 extern void sdstd_spinbits(sdioh_info_t *sd, uint16 norm, uint16 err); 223 extern uint16 sdstd_waitbits(sdioh_info_t *sd, uint16 norm, uint16 err, bool yield);
|
/external/kernel-headers/original/linux/ |
videodev.h | 60 __u16 norm; /* Norm set by channel */ member in struct:video_channel 73 #define VIDEO_TUNER_NORM 16 /* Tuner can set norm */
|
/external/icu4c/samples/coll/ |
coll.cpp | 17 "-norm Normalizing mode on\n" 70 {"-norm", OptSpec::FLAG, &opt_norm},
|
/external/srec/srec/clib/ |
cnorm_tr.c | 106 log_report("NORM IML: "); 114 log_report("NORM ADJ: ");
|