HomeSort by relevance Sort by last modified time
    Searched refs:ub (Results 201 - 225 of 310) sorted by null

1 2 3 4 5 6 7 891011>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/sh/sh64/
basic-1.s 110 ld.ub r53,-201,r2
120 ldx.ub r13,r0,r1
128 madds.ub r34,r23,r49
134 mcmpgt.ub r34,r54,r13
178 msubs.ub r38,r29,r56
basic-1.d 112 [ ]+19c:[ ]+935cdc20[ ]+ld\.ub r53,-201,r2
122 [ ]+1c4:[ ]+40d40010[ ]+ldx\.ub r13,r0,r1
130 [ ]+1e4:[ ]+0a245f10[ ]+madds\.ub r34,r23,r49
136 [ ]+1fc:[ ]+2a24d8d0[ ]+mcmpgt\.ub r34,r54,r13
180 [ ]+2ac:[ ]+0a6c7780[ ]+msubs\.ub r38,r29,r56
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTModelPOD.cpp 282 unsigned char ub[4]; local
284 if(Read(&ub, 4))
287 *pn = (unsigned int) ((ub[3] << 24) | (ub[2] << 16) | (ub[1] << 8) | ub[0]);
297 unsigned char ub[2]; local
299 if(Read(&ub, 2))
302 *pn = (unsigned short) ((ub[1] << 8) | ub[0])
593 unsigned char ub[2]; local
613 unsigned char ub[4]; local
1384 unsigned char ub[4]; local
    [all...]
  /external/libffi/src/avr32/
sysv.S 195 ld.ub r12, sp[0]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_sampler_state.c 367 UNCLAMPED_FLOAT_TO_UBYTE(sdc->ub[0], color.f[0]);
368 UNCLAMPED_FLOAT_TO_UBYTE(sdc->ub[1], color.f[1]);
369 UNCLAMPED_FLOAT_TO_UBYTE(sdc->ub[2], color.f[2]);
370 UNCLAMPED_FLOAT_TO_UBYTE(sdc->ub[3], color.f[3]);
  /external/mesa3d/src/mesa/main/
macros.h 150 #define UNCLAMPED_FLOAT_TO_UBYTE(UB, FLT) \
155 UB = (GLubyte) 0; \
157 UB = (GLubyte) 255; \
160 UB = (GLubyte) __tmp.i; \
163 #define CLAMPED_FLOAT_TO_UBYTE(UB, FLT) \
167 UB = (GLubyte) __tmp.i; \
170 #define UNCLAMPED_FLOAT_TO_UBYTE(ub, f) \
171 ub = ((GLubyte) _mesa_lroundevenf(CLAMP((f), 0.0F, 1.0F) * 255.0F))
172 #define CLAMPED_FLOAT_TO_UBYTE(ub, f) \
173 ub = ((GLubyte) _mesa_lroundevenf((f) * 255.0F)
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/src/avr32/
sysv.S 195 ld.ub r12, sp[0]
  /external/python/cpython3/Lib/test/
test_string_literals.py 213 self.assertRaises(SyntaxError, eval, """ ub'' """)
  /external/python/cpython3/Modules/_ctypes/libffi/src/avr32/
sysv.S 195 ld.ub r12, sp[0]
  /external/valgrind/drd/tests/
unit_bitmap.c 203 const Addr ub = make_address(2, 0) + 2 * BITS_PER_UWORD; local
212 for (i = lb; i < ub; i += outer_loop_step)
214 for (j = i + ADDR_GRANULARITY; j < ub; j += inner_loop_step)
278 for (j = i + 1; j < ub; j += inner_loop_step)
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_uniforms.c 314 color |= (vc4->blend_color.ub[format_swiz[i]] <<
322 uint8_t a = vc4->blend_color.ub[3];
vc4_context.h 370 uint8_t ub[4]; member in struct:vc4_context::__anon30156
  /frameworks/base/core/tests/coretests/
Android.mk 42 ub-uiautomator \
  /external/icu/icu4c/source/test/perf/howExpensiveIs/
howExpensiveIs.cpp 255 #define OCName(svc,ub,testn,suffix,n) testn ## svc ## ub ## suffix ## n
256 #define OCStr(svc,ub,suffix,n) "Test_" # svc # ub # suffix # n
257 #define OCRun(svc,ub,suffix) svc ## ub ## suffix
  /external/opencv/cxcore/include/
cxmisc.h 431 T *ub; \
441 stack[0].ub = array + (total - 1); \
446 T* right = stack[sp--].ub; \
563 stack[sp].ub = left0 + n - 1; \
569 stack[sp].ub = right0; \
    [all...]
  /external/capstone/bindings/vb6/
mMisc.bas 375 Dim tmp() As String, ub As Long
378 ub = tmp(UBound(tmp))
380 GetParentFolder = Replace(Join(tmp, "\"), "\" & ub, "")
  /external/mesa3d/src/gallium/auxiliary/util/
u_math.h 374 ubyte_to_float(ubyte ub)
376 return (float) ub * (1.0f / 255.0f);
  /external/icu/icu4c/source/i18n/
decNumber.cpp 821 const Unit *ua, *ub; \/* -> operands *\/ local
1837 const Unit *ua, *ub; \/* -> operands *\/ local
3267 const Unit *ua, *ub; \/* -> operands *\/ local
3489 uByte *ub=bcd+dn->digits-1; \/* -> lsd *\/ local
3524 const uByte *ub=bcd; \/* -> source msd *\/ local
    [all...]
nfrs.cpp 736 int64_t ub = util64_fromDouble(upperBound); local
740 util64_toa(ub, ubstr, 64);
742 util64_toa(ub, ubstrhex, 64, 16);
743 fprintf(stderr, "ub: %g, i64: %s (%s)\n", upperBound, ubstr, ubstrhex);
747 if ((!fIsFractionRuleSet) && (rules[i]->getBaseValue() >= ub)) {
  /external/deqp/modules/glshared/
glsVertexArrayTests.hpp 389 explicit GLValue (Ubyte value) : type(Array::INPUTTYPE_UNSIGNED_BYTE), ub(value) {}
410 Ubyte ub; member in union:deqp::gls::GLValue::__anon18903
  /frameworks/native/libs/vr/libbufferhubqueue/
buffer_hub_queue_client.cpp 41 const uint32_t ub = static_cast<uint32_t>(b); local
42 return (static_cast<uint64_t>(ua) << 32) | static_cast<uint64_t>(ub);
  /prebuilts/go/darwin-x86/src/syscall/
zsysnum_freebsd_386.go 123 SYS_STAT = 188 // { int stat(char *path, struct stat *ub); }
125 SYS_LSTAT = 190 // { int lstat(char *path, struct stat *ub); }
164 SYS_NSTAT = 278 // { int nstat(char *path, struct nstat *ub); }
166 SYS_NLSTAT = 280 // { int nlstat(char *path, struct nstat *ub); }
zsysnum_freebsd_amd64.go 123 SYS_STAT = 188 // { int stat(char *path, struct stat *ub); }
125 SYS_LSTAT = 190 // { int lstat(char *path, struct stat *ub); }
164 SYS_NSTAT = 278 // { int nstat(char *path, struct nstat *ub); }
166 SYS_NLSTAT = 280 // { int nlstat(char *path, struct nstat *ub); }
zsysnum_freebsd_arm.go 123 SYS_STAT = 188 // { int stat(char *path, struct stat *ub); }
125 SYS_LSTAT = 190 // { int lstat(char *path, struct stat *ub); }
164 SYS_NSTAT = 278 // { int nstat(char *path, struct nstat *ub); }
166 SYS_NLSTAT = 280 // { int nlstat(char *path, struct nstat *ub); }
  /prebuilts/go/linux-x86/src/syscall/
zsysnum_freebsd_386.go 123 SYS_STAT = 188 // { int stat(char *path, struct stat *ub); }
125 SYS_LSTAT = 190 // { int lstat(char *path, struct stat *ub); }
164 SYS_NSTAT = 278 // { int nstat(char *path, struct nstat *ub); }
166 SYS_NLSTAT = 280 // { int nlstat(char *path, struct nstat *ub); }

Completed in 1492 milliseconds

1 2 3 4 5 6 7 891011>>