/external/chromium_org/third_party/icu/source/common/ |
brkeng.cpp | 220 UScriptCode code = uscript_getScript(c, &status); local 222 const CompactTrieDictionary *dict = loadDictionaryFor(code, breakType); 225 switch(code) { 247 UBlockCode block = ublock_getCode(code);
|
/external/chromium_org/third_party/icu/source/test/cintltst/ |
cucdapi.c | 62 /* bogus names should return invalid code */ 75 log_data_err("Error getting script code Got: %i Expected: %i for name %s (Error code does not propagate if data is not present. Are you missing data?)\n", 103 log_err("Japanese locale: code #%d was %d (%s) but expected %d (%s)\n", j, 240 UScriptCode code = USCRIPT_INVALID_CODE; local 245 code = uscript_getScript(codepoints[i],&status); 247 if( code != expected[i] || 248 code != (UScriptCode)u_getIntPropertyValue(codepoints[i], UCHAR_SCRIPT) 265 UScriptCode code= USCRIPT_INVALID_CODE; local 267 code = uscript_getScript(0x001D169,&status) 273 UScriptCode code= USCRIPT_INVALID_CODE; local [all...] |
sprpdata.c | 51 uint32_t code; local 75 /* get the character code, field 0 */ 76 code=(uint32_t)uprv_strtoul(fields[0][0], &end, 16); 82 compareMapping(data, code,mapping, length,USPREP_MAP); 101 /*fprintf(stdout,"Number of code points that have mappings with length >1 : %i\n",len);*/ 236 // supplementary code point
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
dtmfsender.cc | 8 * 1. Redistributions of source code must retain the above copyright notice, 45 // | Event | Code | Type | Volume? | 53 // 2 seconds before processing the next tone. We use -1 as its code. 66 // Get DTMF code from the DTMF event character. 67 bool GetDtmfCode(char tone, int* code) { 74 *code = p - kDtmfTonesTable - 1; 198 int code = 0; local 208 if (!GetDtmfCode(tone, &code)) { 216 if (code == kDtmfCodeTwoSecondDelay) { 227 if (!provider_->InsertDtmf(track_->id(), code, duration_)) [all...] |
/external/chromium_org/third_party/lzma_sdk/ |
Bcj2.c | 1 /* Bcj2.c -- Converter for x86 code (BCJ2) 24 #define RC_INIT2 code = 0; range = 0xFFFFFFFF; \ 25 { int i; for (i = 0; i < 5; i++) { RC_TEST; code = (code << 8) | RC_READ_BYTE; }} 27 #define NORMALIZE if (range < kTopValue) { RC_TEST; range <<= 8; code = (code << 8) | RC_READ_BYTE; } 29 #define IF_BIT_0(p) ttt = *(p); bound = (range >> kNumBitModelTotalBits) * ttt; if (code < bound) 31 #define UPDATE_1(p) range -= bound; code -= bound; *(p) = (CProb)(ttt - (ttt >> kNumMoveBits)); NORMALIZE; 44 UInt32 range, code; local
|
LzmaDec.h | 56 UInt32 range, code; member in struct:__anon14160 102 LZMA_STATUS_NOT_SPECIFIED, /* use main error code instead */
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/ |
lp_bld_init.c | 150 * avoid generating bad code. 164 * implementation) somehow becomes invalid code. 568 /* Dump byte code to a file */ 591 void *code; local 597 code = LLVMGetPointerToGlobal(gallivm->engine, func); 598 assert(code); 599 jit_func = pointer_to_func(code); 602 lp_disassemble(code); 613 * Free the function (and its machine code). 618 const void *code) [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/ |
nvc0_program.h | 27 uint32_t *code; member in struct:nvc0_program
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/ |
r300_fragprog.c | 61 struct r300_fragment_program_code *code = &compiler->code->code.r300; local 70 fprintf(stderr, "code_offset_ext: %08x\n", code->r400_code_offset_ext); 73 for (n = 0; n <= (code->config & 3); n++) { 74 uint32_t code_addr = code->code_addr[3 - (code->config & 3) + n]; 76 (((code->r400_code_offset_ext >> (24 - (n * 6))) & 0x7) << 6); 78 (((code->r400_code_offset_ext >> (27 - (n * 6))) & 0x7) << 6); 86 if (n > 0 || (code->config & R300_PFS_CNTL_FIRST_NODE_HAS_TEX)) [all...] |
r300_fragprog_emit.c | 58 struct r300_fragment_program_code *code = &c->code->code.r300 83 static void use_temporary(struct r300_fragment_program_code *code, unsigned int index) 85 if (index > code->pixsize) 86 code->pixsize = index; 89 static unsigned int use_source(struct r300_fragment_program_code* code, struct rc_pair_instruction_source src) 97 use_temporary(code, src.Index); 157 if (code->alu.length >= c->Base.max_alu_insts) { 162 ip = code->alu.length++ 308 struct r300_fragment_program_code *code = &emit->compiler->code->code.r300; local 481 struct r300_fragment_program_code *code = &compiler->code->code.r300; local [all...] |
r500_fragprog.c | 372 struct r500_fragment_program_code *code = &compiler->code->code.r500; local 379 for (n = 0; n < code->inst_end+1; n++) { 380 inst0 = inst = code->inst[n].inst0; 399 fprintf(stderr,"\t1:RGB_ADDR 0x%08x:", code->inst[n].inst1); 400 inst = code->inst[n].inst1; 408 fprintf(stderr,"\t2:ALPHA_ADDR 0x%08x:", code->inst[n].inst2); 409 inst = code->inst[n].inst2; 415 fprintf(stderr,"\t3 RGB_INST: 0x%08x:", code->inst[n].inst3) [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/ |
base.hpp | 41 /// OpenCL status code. 45 error(cl_int code, std::string what = "") : 46 std::runtime_error(what), code(code) { 50 return code; 54 cl_int code; member in class:clover::error
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/winedlls/dxgi/ |
dxgi_dll.c | 52 * It might be a good idea to integrate this code in winex11.drv. 78 unsigned code = X11DRV_GET_DRAWABLE; local 111 ExtEscape(hdc, X11DRV_ESCAPE, sizeof(code), (LPSTR)&code, sizeof(drawable), (LPTSTR)&drawable); 179 * instead of this ridiculous amount of clumsy duplicated code everywhere 180 * C++ exists exactly to avoid having to write the following code */ 233 unsigned code = X11DRV_GET_DISPLAY; local 238 ExtEscape(hdc, X11DRV_ESCAPE, sizeof(code), (LPSTR)&code, sizeof(dpy), (LPTSTR)&dpy);
|
/external/chromium_org/third_party/openssl/openssl/crypto/rand/ |
rand_unix.c | 11 * apply to all code found in this distribution, be it the RC4, RSA, 12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation 17 * the code are not to be removed. 26 * 1. Redistributions of source code must retain the copyright 37 * 4. If you include any Windows specific code (or a derivative thereof) from 38 * the apps directory (application code) you must include an acknowledgement: 54 * derivative of this code cannot be changed. i.e. this code cannot simply be 65 * 1. Redistributions of source code must retain the above copyrigh 155 short int code; local [all...] |
/external/chromium_org/third_party/ots/third_party/lzma_sdk/ |
LzmaDec.h | 57 UInt32 range, code; member in struct:__anon15728 103 LZMA_STATUS_NOT_SPECIFIED, /* use main error code instead */
|
/external/chromium_org/third_party/skia/src/core/ |
SkGlyph.h | 4 * Use of this source code is governed by a BSD-style license that can be 78 unsigned code = ID2Code(fID); local 79 SkASSERT(code >= baseGlyphCount); 80 return code - baseGlyphCount; 134 static uint32_t MakeID(unsigned code) { 135 return code; 138 static uint32_t MakeID(unsigned code, SkFixed x, SkFixed y) { 139 SkASSERT(code <= kCodeMask); 144 code;
|
/external/chromium_org/third_party/skia/src/ports/ |
SkXMLPullParser_expat.cpp | 5 * Use of this source code is governed by a BSD-style license that can be 134 XML_Error code = XML_GetErrorCode(parser); local 136 const char* msg = XML_ErrorString(code); 138 printf("-------- XML error [%d] on line %d, %s\n", code, lineNumber, msg);
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/ |
win64-except.c | 9 * 1. Redistributions of source code must retain the above copyright 112 coff_unwind_code *code; local 119 code = SLIST_FIRST(&info->codes); 121 yasm_value_delete(&code->off); 122 yasm_xfree(code); 132 coff_unwind_code *code; local 150 /* Code array */ 151 SLIST_FOREACH(code, &info->codes, link) { 152 codebc = yasm_bc_create_common(&win64_uwcode_bc_callback, code, 153 yasm_symrec_get_def_line(code->loc)) 332 coff_unwind_code *code = (coff_unwind_code *)contents; local 346 coff_unwind_code *code = (coff_unwind_code *)bc->contents; local 355 coff_unwind_code *code = (coff_unwind_code *)bc->contents; local 426 coff_unwind_code *code = (coff_unwind_code *)bc->contents; local 467 coff_unwind_code *code = (coff_unwind_code *)bc->contents; local [all...] |
/external/chromium_org/v8/src/arm/ |
regexp-macro-assembler-arm.cc | 6 // * Redistributions of source code must retain the above copyright 35 #include "code-stubs.h" 49 * - r5 : Pointer to current code object (Code*) including heap object tag. 55 * - r9 : Unused, might be used by C code and expected unchanged. 67 * - fp[52] direct_call (if 1, direct call from JavaScript code, 100 * code and the remaining arguments are passed in registers, e.g. by calling the 101 * code entry as cast to a function with the signature: 113 * When calling as a non-direct call (i.e., from C++ code), the return address 114 * area is overwritten with the LR register by the RegExp code. When doing 873 Handle<Code> code = isolate()->factory()->NewCode( local [all...] |
/external/chromium_org/v8/src/ |
codegen.cc | 6 // * Redistributions of source code must retain the above copyright 78 PrintF("[generating %s code for %s function: ", kind, ftype); 103 Handle<Code> CodeGenerator::MakeCodeEpilogue(MacroAssembler* masm, 104 Code::Flags flags, 108 // Allocate and install the code. 111 Code::ExtractKindFromFlags(flags) == Code::OPTIMIZED_FUNCTION || 114 Handle<Code> code = local 117 if (!code.is_null()) [all...] |
frames.h | 6 // * Redistributions of source code must retain the above copyright 45 // Return the code of the n-th saved register available to JavaScript. 59 Code* code; member in struct:v8::internal::InnerPointerToCodeCache::InnerPointerToCodeCacheEntry 67 Code* GcSafeFindCodeForInnerPointer(Address inner_pointer); 68 Code* GcSafeCastToCode(HeapObject* object, Address inner_pointer); 126 inline void Iterate(ObjectVisitor* v, Code* holder) const; 193 // manually and the FrameScope does not need to emit code. 276 // Get the code associated with this frame. 278 virtual Code* unchecked_code() const = 0 [all...] |
/external/chromium_org/v8/test/cctest/ |
test-assembler-x64.cc | 6 // * Redistributions of source code must retain the above copyright 39 using v8::internal::Code; 427 Code* code = Code::cast(isolate->heap()->CreateCode( local 429 Code::ComputeFlags(Code::STUB), 430 v8::internal::Handle<Code>())->ToObjectChecked()); 431 CHECK(code->IsCode()); 433 F0 f = FUNCTION_CAST<F0>(code->entry()) 480 Code* code = Code::cast(isolate->heap()->CreateCode( local [all...] |
test-log-stack-tracer.cc | 6 // * Redistributions of source code must retain the above copyright 80 // pure JS code is being executed 185 i::Code* code = function->code(); local 186 return code->contains(addr); 260 // execution of a native function called from JS code. In this case, 303 // execution of JS code. However, as calling TickSample::Trace requires 304 // entering native code, we can only emulate pure JS by erasing 377 // pure native code. TickSample::Trace only unrolls JS code, so we can' [all...] |
/external/clang/unittests/ASTMatchers/Dynamic/ |
RegistryTest.cpp | 109 std::string code = "int i;"; local 110 EXPECT_FALSE(matches(code, HasInitializerSimple)); 111 EXPECT_FALSE(matches(code, HasInitializerComplex)); 113 code = "int i = 1;"; 114 EXPECT_TRUE(matches(code, HasInitializerSimple)); 115 EXPECT_FALSE(matches(code, HasInitializerComplex)); 117 code = "int y(); int i = y();"; 118 EXPECT_TRUE(matches(code, HasInitializerSimple)); 119 EXPECT_TRUE(matches(code, HasInitializerComplex)); 142 std::string Code = "class Y { public: void x(); }; void z() { Y y; y.x(); }" [all...] |
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
ArrayData.java | 17 package com.android.dx.dex.code; 20 import com.android.dx.rop.code.RegisterSpecList; 21 import com.android.dx.rop.code.SourcePosition; 33 * {@code non-null;} address representing the instruction that uses this 38 /** {@code non-null;} initial values to be filled into an array */ 52 * unknown ({@code -1}). 54 * @param position {@code non-null;} source position 55 * @param user {@code non-null;} address representing the instruction that 57 * @param values {@code non-null;} initial values to be filled into an array
|