HomeSort by relevance Sort by last modified time
    Searched refs:c4 (Results 101 - 125 of 294) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
find_util_test.js 32 <h2 id="c4">Chapter 4</h2>
  /external/kernel-headers/original/uapi/linux/
binder.h 25 #define B_PACK_CHARS(c1, c2, c3, c4) \
26 ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /prebuilts/ndk/9/platforms/android-19/arch-arm64/usr/include/linux/
binder.h 22 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /prebuilts/ndk/9/platforms/android-19/arch-mips64/usr/include/linux/
binder.h 22 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /prebuilts/ndk/9/platforms/android-19/arch-x86_64/usr/include/linux/
binder.h 22 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
InsnFormat.java 547 * @param c4 code unit to write
550 short c2, short c3, short c4) {
555 out.writeShort(c4);
566 * @param c4 code unit to write
570 short c2, short c3, short c4, short c5) {
575 out.writeShort(c4);
  /dalvik/dx/src/com/android/dx/dex/code/
InsnFormat.java 645 * @param c4 code unit to write
648 short c2, short c3, short c4) {
653 out.writeShort(c4);
693 * @param c4 code unit to write
696 short c3, short c4) {
697 write(out, c0, (short) c1c2, (short) (c1c2 >> 16), c3, c4);
  /external/clang/test/CXX/special/class.ctor/
p6-0x.cpp 50 constexpr Constexpr4 c4 = Constexpr4(); // ok variable
  /external/clang/test/CodeGenCXX/
global-init.cpp 177 const int c4 = C(C()).n; member in namespace:test7
mangle-ms-return-qualifiers.cpp 65 const volatile A c4() { return A(); } function
66 // CHECK: "\01?c4@@YA?DVA@@XZ"
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
InsnFormat.java 647 * @param c4 code unit to write
650 short c2, short c3, short c4) {
655 out.writeShort(c4);
695 * @param c4 code unit to write
698 short c3, short c4) {
699 write(out, c0, (short) c1c2, (short) (c1c2 >> 16), c3, c4);
  /external/sonivox/arm-fm-22k/host_src/
eas_hostmm.c 369 EAS_U8 c1, c2,c3,c4; local
378 if ((result = EAS_HWGetByte(hwInstData, file, &c4)) != EAS_SUCCESS)
383 *((EAS_U32*) p) = ((EAS_U32) c1 << 24) | ((EAS_U32) c2 << 16) | ((EAS_U32) c3 << 8) | c4;
385 *((EAS_U32*) p)= ((EAS_U32) c4 << 24) | ((EAS_U32) c3 << 16) | ((EAS_U32) c2 << 8) | c1;
  /external/sonivox/arm-hybrid-22k/host_src/
eas_hostmm.c 369 EAS_U8 c1, c2,c3,c4; local
378 if ((result = EAS_HWGetByte(hwInstData, file, &c4)) != EAS_SUCCESS)
383 *((EAS_U32*) p) = ((EAS_U32) c1 << 24) | ((EAS_U32) c2 << 16) | ((EAS_U32) c3 << 8) | c4;
385 *((EAS_U32*) p)= ((EAS_U32) c4 << 24) | ((EAS_U32) c3 << 16) | ((EAS_U32) c2 << 8) | c1;
  /external/sonivox/arm-wt-22k/host_src/
eas_hostmm.c 399 EAS_U8 c1, c2,c3,c4; local
408 if ((result = EAS_HWGetByte(hwInstData, file, &c4)) != EAS_SUCCESS)
413 *((EAS_U32*) p) = ((EAS_U32) c1 << 24) | ((EAS_U32) c2 << 16) | ((EAS_U32) c3 << 8) | c4;
415 *((EAS_U32*) p)= ((EAS_U32) c4 << 24) | ((EAS_U32) c3 << 16) | ((EAS_U32) c2 << 8) | c1;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
CurrencyTest.java 329 Currency c4 = Currency.getInstance("XXX"); local
330 c4.getDefaultFractionDigits();
331 assertEquals(" Currency.getInstance(\"" + c4
332 + "\") returned incorrect number of digits. ", -1, c4
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
Base64Encoder.java 265 private int decodeLastBlock(OutputStream out, char c1, char c2, char c3, char c4)
284 else if (c4 == padding)
305 b4 = decodingTable[c4];
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
CipherSuiteTest.java 34 CipherSuite c4 = new CipherSuite("CipherSuite4", false, 0, "", "", local
36 if (!c1.equals(c2) || c1.equals(c3) || c4.equals(c1) || c4.equals(c3)) {
97 CipherSuite c4 = new CipherSuite("CipherSuite4", false, local
102 assertFalse(c4.isAnonymous());
  /external/valgrind/main/coregrind/
m_libcbase.c 677 Int c4; local
686 c4 = c & 0xFF;
687 c4 |= (c4 << 8);
688 c4 |= (c4 << 16);
690 ((Int*)d)[0] = c4;
691 ((Int*)d)[1] = c4;
692 ((Int*)d)[2] = c4;
693 ((Int*)d)[3] = c4;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontTest.cpp 79 static UChar c4[] = { 0x1DD0 }; local
80 EXPECT_EQ(ComplexPath, Character::characterRangeCodePath(c4, 1));
116 static UChar c4[] = { 0xDBFF, 0xE000 }; local
117 EXPECT_EQ(SimplePath, Character::characterRangeCodePath(c4, 2));
160 static UChar c4[] = { 0x36F, 0x330 }; local
161 EXPECT_EQ(ComplexPath, Character::characterRangeCodePath(c4, 2));
  /external/chromium_org/base/
callback_list_unittest.cc 126 CallbackList<void(int, int, int, int)> c4; local
128 subscription4 = c4.Add(Bind(&Summer::AddFourParam, Unretained(&s)));
130 c4.Notify(1, 2, 3, 4);
  /external/clang/test/CodeGen/
arm64-abi-vector.c 44 __char4 c4 = va_arg(ap, __char4); local
45 sum = sum + c4.x + c4.y;
  /art/test/004-JniTest/src/
Main.java 142 native static char charMethod(char c1, char c2, char c3, char c4, char c5, char c6, char c7,
  /art/test/115-native-bridge/src/
NativeBridgeMain.java 137 native static char charMethod(char c1, char c2, char c3, char c4, char c5, char c6, char c7,
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-common.h 93 #define HB_TAG(c1,c2,c3,c4) ((hb_tag_t)((((uint8_t)(c1))<<24)|(((uint8_t)(c2))<<16)|(((uint8_t)(c3))<<8)|((uint8_t)(c4))))
  /external/harfbuzz_ng/src/
hb-common.h 93 #define HB_TAG(c1,c2,c3,c4) ((hb_tag_t)((((uint8_t)(c1))<<24)|(((uint8_t)(c2))<<16)|(((uint8_t)(c3))<<8)|((uint8_t)(c4))))

Completed in 2279 milliseconds

1 2 3 45 6 7 8 91011>>