HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 326 - 350 of 4335) sorted by null

<<11121314151617181920>>

  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_maos_arrays.c 25 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
51 static void emit_s0_vec(uint32_t *out, GLvoid *data, int stride, int count)
59 out[0] = *(int *)data;
60 out[1] = 0;
61 out += 2;
66 static void emit_stq_vec(uint32_t *out, GLvoid *data, int stride, int count)
75 out[0] = *(int *)data;
76 out[1] = *(int *)(data+4);
77 out[2] = *(int *)(data+12);
78 out += 3
88 uint32_t *out; local
    [all...]
  /external/mockito/src/org/mockito/internal/debugging/
MockitoDebuggerImpl.java 22 String out = ""; local
24 out += line("********************************");
25 out += line("*** Mockito interactions log ***");
26 out += line("********************************");
28 out += line(i.toString());
29 out += line(" invoked: " + i.getLocation());
31 out += line(" stubbed: " + i.stubInfo().stubbedAt().toString());
37 return print(out);
39 out += line("********************************");
40 out += line("*** Unused stubs ***");
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
Hex.java 37 char[] out = new char[(l << 1) + (group > 0 ? (l / group) : 0)]; local
41 out[j++] = '-';
44 out[j++] = DIGITS[(0xF0 & data[i]) >>> 4];
45 out[j++] = DIGITS[0x0F & data[i]];
47 return new String(out);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/
Debug.java 18 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
30 System.out.printf("%3d, ", output[i]);
33 System.out.println();
41 System.out.printf("%3d, ", output[i]);
44 System.out.println();
51 System.out.printf("%3d, ", output.get());
53 System.out.println();
61 System.out.printf("%3d, ", table[i]);
64 System.out.println();
69 // System.out.printf("> " + format + "\n", args)
    [all...]
  /external/opencv3/modules/videoio/src/cap_winrt/
MFIncludes.hpp 22 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
68 MW::ComPtr<T> out; variable
69 CHK(reinterpret_cast<IInspectable*>(in)->QueryInterface(IID_PPV_ARGS(&out)));
70 return out;
77 Microsoft::WRL::ComPtr<T> out; local
78 CHK(in.As(&out));
79 return out;
86 Microsoft::WRL::ComPtr<T> out; local
87 CHK(in->QueryInterface(IID_PPV_ARGS(&out)));
88 return out;
    [all...]
  /external/opencv3/samples/python2/
turing.py 29 out = None variable
32 out = cv2.VideoWriter(args['-o'], cv2.VideoWriter_fourcc(*'DIB '), 30.0, (w, h), False) variable
59 if out:
60 out.write(a)
  /external/owasp/sanitizer/
Makefile 11 @echo " The output will be available under out/."
13 @echo " classes - Put Java .class files under out/."
25 @echo " directories of trunk checked out."
54 out:
55 mkdir -p out
57 out/classes: out
58 mkdir -p out/classes
60 out/genfiles: out
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
ElementAndAttributePolicyBasedSanitizerPolicy.java 26 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
50 private final HtmlStreamEventReceiver out; field in class:ElementAndAttributePolicyBasedSanitizerPolicy
63 HtmlStreamEventReceiver out,
66 this.out = out;
79 out.openDocument();
86 out.closeTag(tagNameToClose);
91 out.closeDocument();
96 out.text(textChunk);
156 out.closeTag(tagNameToClose)
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmshalf.c 21 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
510 } out; local
    [all...]
  /external/selinux/policycoreutils/hll/pp/
pp.c 72 FILE *out = NULL; local
103 out = fopen(argv[2], "w");
104 if (out == NULL) {
110 out = stdout;
125 rc = sepol_module_package_to_cil(out, mod_pkg);
134 if (out != NULL) {
135 fclose(out);
  /external/selinux/policycoreutils/semodule_package/
semodule_unpackage.c 28 fprintf(stderr, "%s: Out of memory\n", progname);
44 struct sepol_policy_file *in, *out; local
65 fprintf(stderr, "%s: Out of memory\n", progname);
75 if (file_to_policy_file(modfile, &out, "w"))
78 if (sepol_policydb_write(sepol_module_package_get_policy(pkg), out)) {
84 sepol_policy_file_free(out);
  /external/selinux/policycoreutils/sepolicy/sepolicy/
transition.py 63 def out(self, name, header=""): member in class:setrans
79 buf += self.out(x, "%s%s ... " % (header, name))
84 print self.out(self.source)
  /external/skia/src/gpu/
GrXferProcessor.cpp 185 SkString out; local
186 out.printf("write_color(%d) equation(%s) src_coeff(%s) dst_coeff:(%s) const(0x%08x)",
189 return out;
  /external/smali/util/src/main/java/org/jf/util/
SmaliHelpFormatter.java 25 * INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
40 System.out.println();
41 System.out.println("Debug Options:");
42 PrintWriter pw = new PrintWriter(System.out);
  /external/testng/src/test/java/test/
SerializationTest.java 14 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
15 ObjectOutputStream oos = new ObjectOutputStream(out);
22 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
23 ObjectOutputStream oos = new ObjectOutputStream(out);
  /external/toybox/kconfig/
util.c 33 FILE *out; local
37 out = fopen("..config.tmp", "w");
38 if (!out)
40 fprintf(out, "deps_config := \\\n");
43 fprintf(out, "\t%s \\\n", file->name);
45 fprintf(out, "\t%s\n", file->name);
47 fprintf(out, "\ninclude/config/auto.conf: \\\n"
50 fclose(out);
  /external/toybox/scripts/
mkstatus.py 24 stuff,blah=readit(["sed","-n", 's/<span id=\\([a-z_]*\\)>/\\1 /;t good;d;:good;h;:loop;n;s@</span>@@;t out;H;b loop;:out;g;s/\\n/ /g;p', "www/roadmap.html", "www/status.html"])
63 out = i
71 out = j[2] % out
73 if (not skippy) and out == i:
76 return linky % out
87 out=categorize(reverse, i) variable
88 allcmd.append(out)
90 if i in toystuff: done.append(out)
92 out='<strike>%s<\/strike>' % out variable
    [all...]
  /external/toybox/toys/other/
dos2unix.c 42 int len, in, out; local
48 for (in = out = 0; in < len; in++) {
53 if (c == 'u' || x != '\n') toybuf[out++] = '\r';
56 } else if (c == 'u' && x == '\n') toybuf[out++] = '\r';
59 else toybuf[out++] = x;
61 xwrite(outfd, toybuf, out);
  /external/toybox/toys/posix/
uudecode.c 48 char *in, *out; local
59 in = out = line;
91 *(out++) = (x>>(8*(3-i))) & 0xff;
100 xwrite(ofd, line, out-line);
uuencode.c 48 int out; local
51 out = (x>>((3-j)*6)) & 0x3f;
52 xputc(m ? (j > bytes ? '=' : toybuf[out]) : (out ? out + 0x20 : 0x60));
xargs.c 54 // If out==NULL count TT.bytes and TT.entries, stopping at max.
55 // Otherwise, fill out out[]
113 char *data = NULL, **out; local
162 out = xzalloc((entries+TT.entries+1)*sizeof(char *));
164 // Fill out command line to exec
165 memcpy(out, toys.optargs, entries*sizeof(char *));
170 handle_entries(dtemp->data, out+entries);
175 xexec(out);
188 free(out);
    [all...]
  /external/tpm2/
Marshal_ActivateCredential.c 68 ActivateCredential_Out out; local
85 result = TPM2_ActivateCredential(&in, &out);
93 bytes_marshalled = ActivateCredential_Out_Marshal(&out, tag, &response_buffer,
Marshal_Certify.c 69 Certify_Out out; local
85 result = TPM2_Certify(&in, &out);
94 Certify_Out_Marshal(&out, tag, &response_buffer, &response_buffer_size);
Marshal_CertifyCreation.c 77 CertifyCreation_Out out; local
94 result = TPM2_CertifyCreation(&in, &out);
102 bytes_marshalled = CertifyCreation_Out_Marshal(&out, tag, &response_buffer,
Marshal_Commit.c 74 Commit_Out out; local
90 result = TPM2_Commit(&in, &out);
99 Commit_Out_Marshal(&out, tag, &response_buffer, &response_buffer_size);

Completed in 2175 milliseconds

<<11121314151617181920>>