Searched defs:check (Results 201 - 225 of 381) sorted by relevance

1234567891011>>

/external/qemu/distrib/mini-glib/include/
H A Dglib.h193 gboolean (*check)(GSource* source); member in struct:__anon29352
/external/qemu-pc-bios/bochs/bios/
H A Dbiossums.c27 void check( int value, char* message );
242 void check(int okay, char* message) { function
289 check( offset + _32__MINHDR <= MAX_OFFSET, "_32_ header out of bounds" );
291 check( offset + len <= MAX_OFFSET, "_32_ header-length out of bounds" );
325 check( offset + _32__CHKSUM <= MAX_OFFSET, "PCI-Bios checksum out of bounds" );
332 check( offset + _32__CHKSUM <= MAX_OFFSET, "PCI-Bios checksum out of bounds" );
343 check( offset + _MP__MINHDR <= MAX_OFFSET, "_MP_ header out of bounds" );
345 check( offset + len <= MAX_OFFSET, "_MP_ header-length out of bounds" );
379 check( offset + _MP__CHKSUM <= MAX_OFFSET, "MP checksum out of bounds" );
386 check( offse
[all...]
/external/sepolicy/tools/
H A Dsepolicy-check.c43 int check(int op, uint16_t arg1, uint16_t arg2) { function
86 match &= check(s_op, source_type, cur->key.source_type);
87 match &= check(t_op, target_type, cur->key.target_type);
88 match &= check(c_op, target_class, cur->key.target_class);
/external/sfntly/cpp/src/sfntly/table/bitmap/
H A Dindex_sub_table_format5.cc35 int32_t check = CheckGlyphRange(glyph_id); local
36 if (check == -1) {
51 int32_t check = CheckGlyphRange(glyph_id); local
52 if (check == -1) {
103 int32_t check = CheckGlyphRange(glyph_id); local
104 if (check == -1) {
/external/valgrind/main/memcheck/tests/
H A Dsh-mem-random.c26 // XXX: should check the error cases for SET/GET_VBITS also
70 void check(U1* arr, int n, char* who) function
122 printf("post-initialisation check\n");
123 check(arr, N_BYTES, "after initialisation");
206 printf("final check\n");
207 check(arr, N_BYTES, "final check");
/external/zlib/src/examples/
H A Dgun.c115 output file, a running CRC-32 check on the output and the total number of
121 int check; /* true if checking crc and total */ member in struct:outd
136 if (me->check) {
223 outd.check = 0;
315 input does not cause an exception. The code != end + 1 check is
317 code. If this ever causes a problem, that check could be safely
318 removed. Leaving this check in greatly improves gun's ability
320 In any case, the prev > end check must be retained. */
379 trailer CRC-32 check or length doesn't match, Z_BUF_ERROR if the input ends
407 strm->msg = (char *)"incorrect header check";
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/
H A D__init__.py582 This class implements the logic to check requests for authorization. You
652 valid = signature_method.check(request, consumer, token, signature)
702 def check(self, request, consumer, token, signature): member in class:SignatureMethod
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DPoolAlloc.h59 void check() const { function in class:TAllocation
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3d1x/
H A Dsm4_to_tgsi.cpp34 #define check(x) assert(x) macro
37 #define check(x) do {if(!(x)) throw(#x);} while(0) macro
114 check(op.has_simple_index());
115 check(op.indices[0].disp < temps.size());
118 check(op.has_simple_index());
119 check(op.indices[0].disp < outputs.size());
122 check(0);
129 check(i < insn->num_ops);
131 check(op.mode == SM4_OPERAND_MODE_MASK || op.mode == SM4_OPERAND_MODE_SCALAR);
140 check(
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkDistanceFieldGen.cpp198 DFData* check = curr - width-1; local
199 SkPoint distVec = check->fDistVector;
200 float distSq = check->fDistSq - 2.0f*(distVec.fX + distVec.fY - 1.0f);
209 check = curr - width;
210 distVec = check->fDistVector;
211 distSq = check->fDistSq - 2.0f*distVec.fY + 1.0f;
219 check = curr - width+1;
220 distVec = check->fDistVector;
221 distSq = check->fDistSq + 2.0f*(distVec.fX - distVec.fY + 1.0f);
230 check
244 DFData* check = curr + 1; local
259 DFData* check = curr - 1; local
273 DFData* check = curr + 1; local
[all...]
/external/chromium_org/third_party/zlib/
H A Dinflate.h30 DICTID, /* i: waiting for dictionary check value */
33 TYPEDO, /* i: same, but skip check to exit inflate on new block */
47 CHECK, /* i: waiting for 32-bit check value */
49 DONE, /* finished check, done -- remain here until reset */
88 unsigned long check; /* protected copy of check value */ member in struct:inflate_state
/external/chromium_org/v8/src/compiler/arm/
H A Dcode-generator-arm.cc525 Label check; local
531 __ b(vc, &check);
539 __ b(vc, &check);
559 __ b(vc, &check);
567 __ b(vc, &check);
575 __ b(vc, &check);
583 __ b(vc, &check);
597 __ bind(&check);
/external/chromium_org/v8/src/compiler/ia32/
H A Dcode-generator-ia32.cc480 Label check; local
486 __ j(parity_odd, &check, Label::kNear);
494 __ j(parity_odd, &check, Label::kNear);
514 __ j(parity_odd, &check, Label::kNear);
522 __ j(parity_odd, &check, Label::kNear);
530 __ j(parity_odd, &check, Label::kNear);
538 __ j(parity_odd, &check, Label::kNear);
552 __ bind(&check);
/external/chromium_org/v8/src/
H A Dhydrogen-bch.cc13 * It is used to check if, inside one loop, all execution paths contain
14 * a bounds check for a particular [index, length] combination.
16 * executing a check then the check cannot be hoisted out of the loop (it
18 * We also check is there are paths that exit the loop early, and if yes we
22 * some cases they could cause a deopt if we hoist the check so this is a
114 * where the check is not performed, but hoisting the check has the same
116 * unnecessary check failures (which would mean unnecessary deoptimizations).
118 * (loop back to the header) without meeting a check, o
189 ProcessRelatedChecks( InductionVariableData::InductionVariableCheck* check, InductionVariableData* data) argument
299 HBoundsCheck* check = HBoundsCheck::cast(i); local
[all...]
/external/chromium_org/v8/src/ic/
H A Dic-compiler.cc39 IcCheckType check) {
45 return CompilePolymorphic(&types, &handlers, name, stub_type, check);
36 CompileMonomorphic(Handle<HeapType> type, Handle<Code> handler, Handle<Name> name, IcCheckType check) argument
/external/clang/test/CXX/temp/temp.decls/temp.friend/
H A Dp1.cpp80 bool check(A *a) { function in class:test2::HasChecker
85 bool check(A *a) { function in class:test2::HasNotChecker
/external/deqp/modules/gles3/functional/
H A Des3fFboCompletenessTests.cpp161 void check (GLenum attPoint, const Attachment& att, const Image* image);
172 void ES3Checker::check (GLenum attPoint, const Attachment& att, const Image* image) function in class:deqp::gles3::Functional::ES3Checker
/external/libsepol/src/
H A Dmodule.c1005 sepol_policydb_t * out, int verbose, int check)
1007 return expand_module(handle, &base->p, &out->p, verbose, check);
1003 sepol_expand_module(sepol_handle_t * handle, sepol_policydb_t * base, sepol_policydb_t * out, int verbose, int check) argument
/external/libunwind/tests/
H A DGia64-test-nat.c100 check_func_t *check; member in struct:__anon24718
594 checks[i] = all_funcs[index].check;
/external/lzma/C/
H A DXzEnc.c159 CXzCheck check; member in struct:__anon26751
165 XzCheck_Init(&p->check, mode);
170 XzCheck_Final(&p->check, digest);
177 XzCheck_Update(&p->check, data, *size);
220 CXzCheck check;
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d1x/
H A Dsm4_to_tgsi.cpp34 #define check(x) assert(x) macro
37 #define check(x) do {if(!(x)) throw(#x);} while(0) macro
114 check(op.has_simple_index());
115 check(op.indices[0].disp < temps.size());
118 check(op.has_simple_index());
119 check(op.indices[0].disp < outputs.size());
122 check(0);
129 check(i < insn->num_ops);
131 check(op.mode == SM4_OPERAND_MODE_MASK || op.mode == SM4_OPERAND_MODE_SCALAR);
140 check(
[all...]
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dinflate.h30 DICTID, /* i: waiting for dictionary check value */
33 TYPEDO, /* i: same, but skip check to exit inflate on new block */
47 CHECK, /* i: waiting for 32-bit check value */
49 DONE, /* finished check, done -- remain here until reset */
88 unsigned long check; /* protected copy of check value */ member in struct:inflate_state
/external/qemu/distrib/zlib-1.2.8/
H A Dinflate.h30 DICTID, /* i: waiting for dictionary check value */
33 TYPEDO, /* i: same, but skip check to exit inflate on new block */
47 CHECK, /* i: waiting for 32-bit check value */
49 DONE, /* finished check, done -- remain here until reset */
88 unsigned long check; /* protected copy of check value */ member in struct:inflate_state
/external/skia/src/core/
H A DSkDistanceFieldGen.cpp198 DFData* check = curr - width-1; local
199 SkPoint distVec = check->fDistVector;
200 float distSq = check->fDistSq - 2.0f*(distVec.fX + distVec.fY - 1.0f);
209 check = curr - width;
210 distVec = check->fDistVector;
211 distSq = check->fDistSq - 2.0f*distVec.fY + 1.0f;
219 check = curr - width+1;
220 distVec = check->fDistVector;
221 distSq = check->fDistSq + 2.0f*(distVec.fX - distVec.fY + 1.0f);
230 check
244 DFData* check = curr + 1; local
259 DFData* check = curr - 1; local
273 DFData* check = curr + 1; local
[all...]
/external/smack/src/org/xbill/DNS/
H A DType.java213 check(int val) { method in class:Type.TypeMnemonic
214 Type.check(val);
219 check(val);
298 check(int val) { method in class:Type

Completed in 2769 milliseconds

1234567891011>>