Searched refs:check (Results 51 - 75 of 4788) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/libpng/
H A Dpngrio.c53 png_size_t check; local
61 if ( !ReadFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) )
62 check = 0;
64 check = (png_size_t)fread(data, (png_size_t)1, length,
68 if (check != length)
83 int check; local
95 if ( !ReadFile((HANDLE)(png_ptr->io_ptr), data, length, &check,
97 check = 0;
99 check = fread(n_data, 1, length, io_ptr);
106 check
[all...]
H A Dpngwio.c52 png_uint_32 check; local
57 if ( !WriteFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) )
58 check = 0;
60 check = fwrite(data, 1, length, (png_FILE_p)(png_ptr->io_ptr));
62 if (check != length)
77 png_uint_32 check; local
89 if ( !WriteFile(io_ptr, near_data, length, &check, NULL) )
90 check = 0;
92 check = fwrite(near_data, 1, length, io_ptr);
99 check
231 png_far_to_near(png_structp png_ptr, png_voidp ptr, int check) argument
245 png_far_to_near(png_structp png_ptr, png_voidp ptr, int check) argument
[all...]
/external/jsmn/
H A Djsmn_test.c15 #define check(cond) do { if (!(cond)) fail(); } while (0) macro
53 check(r >= 0);
54 check(t[0].type == JSMN_OBJECT);
55 check(t[0].start == 0 && t[0].end == 2);
60 check(r >= 0);
61 check(t[0].type == JSMN_ARRAY);
62 check(t[0].start == 0 && t[0].end == 2);
67 check(r >= 0);
68 check(t[0].type == JSMN_OBJECT && t[0].start == 0 && t[0].end == 8);
69 check(
[all...]
/external/qemu/distrib/libpng-1.2.46/
H A Dpngrio.c68 png_size_t check; local
76 if ( !ReadFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) )
77 check = 0;
79 check = (png_size_t)fread(data, (png_size_t)1, length,
83 if (check != length)
98 int check; local
110 if ( !ReadFile((HANDLE)(png_ptr->io_ptr), data, length, &check,
112 check = 0;
114 check = fread(n_data, 1, length, io_ptr);
121 check
[all...]
H A Dpngwio.c52 png_uint_32 check; local
57 if ( !WriteFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) )
58 check = 0;
60 check = fwrite(data, 1, length, (png_FILE_p)(png_ptr->io_ptr));
62 if (check != length)
77 png_uint_32 check; local
89 if ( !WriteFile(io_ptr, near_data, length, &check, NULL) )
90 check = 0;
92 check = fwrite(near_data, 1, length, io_ptr);
99 check
231 png_far_to_near(png_structp png_ptr, png_voidp ptr, int check) argument
245 png_far_to_near(png_structp png_ptr, png_voidp ptr, int check) argument
[all...]
/external/chromium_org/third_party/icu/source/samples/
H A DMakefile.in29 check check-recursive check-local check-exhaustive
43 check-samples: check-samples-recursive
45 # Note (srl 4/15/2002) do NOT recursively check samples for 2.1, look into testing them in the future.
46 #check: all check-recursive check
[all...]
/external/icu/icu4c/source/samples/
H A DMakefile.in29 check check-recursive check-local check-exhaustive
43 check-samples: check-samples-recursive
45 # Note (srl 4/15/2002) do NOT recursively check samples for 2.1, look into testing them in the future.
46 #check: all check-recursive check
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Daccess-binary-trees.js36 var check = bottomUpTree(0,stretchDepth).itemCheck();
42 check = 0;
44 check += bottomUpTree(i,depth).itemCheck();
45 check += bottomUpTree(-i,depth).itemCheck();
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A Daccess-binary-trees.js36 var check = bottomUpTree(0,stretchDepth).itemCheck();
42 check = 0;
44 check += bottomUpTree(i,depth).itemCheck();
45 check += bottomUpTree(-i,depth).itemCheck();
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
H A Daccess-binary-trees.js36 var check = bottomUpTree(0,stretchDepth).itemCheck();
42 check = 0;
44 check += bottomUpTree(i,depth).itemCheck();
45 check += bottomUpTree(-i,depth).itemCheck();
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
H A Dprint_layout_test_types_unittest.py37 def check(self, args, expected_output, files=None): member in class:PrintLayoutTestTimesTest
49 self.check(['--test-list', '/tmp/test_list'], 'passes/image.html pixel\n', files=files)
52 self.check(['--type', 'audio', 'passes'], 'passes/audio.html\n')
55 self.check(['failures/unexpected/missing_image.html', 'passes/image.html', 'passes/audio.html', 'passes/reftest.html'],
/external/clang/test/CodeGen/
H A D2007-05-29-UnionCopy.c16 void check(union U *u, union U *v) { function
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/check/
H A DAssertionFailedException.java11 package org.eclipse.wb.internal.core.utils.check;
/external/kernel-headers/original/uapi/linux/
H A Dudp.h26 __sum16 check; member in struct:udphdr
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
H A Ddefault02.pass.cpp38 void check(int i);
57 check(0);
63 check(0);
78 void check(int i) function
H A Dpointer02.pass.cpp38 void check(int i);
57 check(1);
61 check(0);
64 check(1);
69 check(0);
86 void check(int i) function
/external/llvm/test/MC/Sparc/
H A Dsparc-directive-xword.s1 ! RUN: not llvm-mc %s -arch=sparc -show-encoding 2>&1 | FileCheck %s --check-prefix=SPARC32
2 ! RUN: llvm-mc %s -arch=sparcv9 -show-encoding | FileCheck %s --check-prefix=SPARC64
/external/chromium_org/third_party/icu/source/test/
H A DMakefile.in31 check check-recursive check-local xcheck xcheck-recursive xcheck-local \
32 check-exhaustive check-exhaustive-recursive
52 check: everything check-recursive check-local
53 check-recursive: all-recursive
57 check
[all...]
/external/icu/icu4c/source/test/
H A DMakefile.in32 check check-recursive check-local xcheck xcheck-recursive xcheck-local \
33 check-exhaustive check-exhaustive-recursive
53 check: everything check-recursive check-local
54 check-recursive: all-recursive
58 check
[all...]
/external/llvm/test/MC/ARM/
H A Ddirective-arch_extension-sec.s2 @ RUN: | FileCheck %s -check-prefix CHECK-ARMv6 -check-prefix CHECK-V6
4 @ RUN: | FileCheck %s -check-prefix CHECK-ARMv7 -check-prefix CHECK-V7
6 @ RUN: | FileCheck %s -check-prefix CHECK-THUMBv6 -check-prefix CHECK-V6
8 @ RUN: | FileCheck %s -check-prefix CHECK-THUMBv7 -check-prefix CHECK-V7
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/fx/
H A Doptions.js42 var check = document.createElement("input");
43 check.type = "checkbox"
44 check.name = key;
45 check.checked = localStorage[key] == "enabled";
46 check.onchange = soundChanged;
47 div.appendChild(check);
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
H A Dpointer02.pass.cpp38 void check(int i);
57 check(3);
61 check(0);
64 check(3);
69 check(0);
86 void check(int i) function
/external/chromium_org/third_party/webrtc/examples/android/media_demo/src/org/webrtc/webrtcdemo/
H A DMediaEngine.java61 private void check(boolean value, String message) { method in class:MediaEngine
159 check(voe.init() == 0, "Failed voe Init");
161 check(audioChannel >= 0, "Failed voe CreateChannel");
163 check(vie.init() == 0, "Failed voe Init");
164 check(vie.setVoiceEngine(voe) == 0, "Failed setVoiceEngine");
166 check(audioChannel >= 0, "Failed voe CreateChannel");
167 check(vie.connectAudioChannel(videoChannel, audioChannel) == 0,
177 check(voe.setSpeakerVolume(volumeLevel) == 0,
179 check(voe.setAecmMode(VoiceEngine.AecmModes.SPEAKERPHONE, false) == 0,
181 check(vi
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
H A Dsm4_analyze.cpp31 #define check(x) do {if(!(x)) return false;} while(0) macro
51 check(!cf_stack.empty());
53 check(program.insns[v]->opcode == SM4_OPCODE_LOOP);
65 check(!cf_stack.empty());
68 check(program.insns[v]->opcode == SM4_OPCODE_IF);
70 check(program.insns[v]->opcode == SM4_OPCODE_SWITCH || program.insns[v]->opcode == SM4_OPCODE_CASE);
77 check(!cf_stack.empty());
80 check(program.insns[v]->opcode == SM4_OPCODE_IF || program.insns[v]->opcode == SM4_OPCODE_ELSE);
82 check(program.insns[v]->opcode == SM4_OPCODE_SWITCH || program.insns[v]->opcode == SM4_OPCODE_CASE);
89 check(cf_stac
[all...]
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
H A Dsm4_analyze.cpp31 #define check(x) do {if(!(x)) return false;} while(0) macro
51 check(!cf_stack.empty());
53 check(program.insns[v]->opcode == SM4_OPCODE_LOOP);
65 check(!cf_stack.empty());
68 check(program.insns[v]->opcode == SM4_OPCODE_IF);
70 check(program.insns[v]->opcode == SM4_OPCODE_SWITCH || program.insns[v]->opcode == SM4_OPCODE_CASE);
77 check(!cf_stack.empty());
80 check(program.insns[v]->opcode == SM4_OPCODE_IF || program.insns[v]->opcode == SM4_OPCODE_ELSE);
82 check(program.insns[v]->opcode == SM4_OPCODE_SWITCH || program.insns[v]->opcode == SM4_OPCODE_CASE);
89 check(cf_stac
[all...]

Completed in 5947 milliseconds

1234567891011>>