Searched refs:label (Results 51 - 75 of 996) sorted by relevance

1234567891011>>

/macosx-10.10.1/JavaScriptCore-7600.1.17/assembler/
H A DLinkBuffer.h136 void link(Call call, CodeLocationLabel label) argument
138 link(call, FunctionPtr(label.executableAddress()));
141 void link(Jump jump, CodeLocationLabel label) argument
144 MacroAssembler::linkJump(code(), jump, label); local
147 void link(JumpList list, CodeLocationLabel label) argument
150 link(list.m_jumps[i], label);
153 void patch(DataLabelPtr label, void* value) argument
155 AssemblerLabel target = applyOffset(label.m_label);
159 void patch(DataLabelPtr label, CodeLocationLabel value) argument
161 AssemblerLabel target = applyOffset(label
191 locationOf(Label label) argument
196 locationOf(DataLabelPtr label) argument
201 locationOf(DataLabel32 label) argument
206 locationOf(DataLabelCompact label) argument
211 locationOf(ConvertibleLoadLabel label) argument
224 offsetOf(Label label) argument
242 trampolineAt(Label label) argument
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/bn/asm/x86/
H A Dmul.pl26 &jz(&label("mw_finish"));
48 &jz(&label("mw_finish"));
49 &jmp(&label("mw_loop"));
54 &jnz(&label("mw_finish2"));
55 &jmp(&label("mw_end"));
69 &jz(&label("mw_end")) if ($i != 7-1);
H A Dmul_add.pl29 &jz(&label("maw_finish"));
55 &jnz(&label("maw_loop"));
60 &jnz(&label("maw_finish2")); # helps branch prediction
61 &jmp(&label("maw_end"));
77 &jz(&label("maw_end")) if ($i != 7-1);
H A Dadd.pl26 &jz(&label("aw_finish"));
48 &jnz(&label("aw_loop"));
53 &jz(&label("aw_end"));
67 &jz(&label("aw_end")) if ($i != 6);
/macosx-10.10.1/bind9-45.101/bind9/contrib/queryperf/utils/
H A Dgen-data-queryperf.py38 def remove_tld(label, tld):
39 if label.endswith('.' + tld + '.'):
40 return label[0:-(1+ len(tld) + 1)]
42 return label
45 label = ""
47 label = label + gen.choice(ldh)
48 return label
50 def make_domain(label):
51 return "www." + label
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/llint/
H A DLowLevelInterpreter.cpp58 // (i.e. goto's) must be to a known label (i.e. local / global labels).
78 // When using a computed goto dispatch in the CLoop, each opcode is a label:
96 // To keep compilers happy in case of unused labels, force usage of the label:
97 #define USE_LABEL(label) \
100 goto label; \
105 #define OFFLINE_ASM_GLOBAL_LABEL(label) OFFLINE_ASM_GLUE_LABEL(label)
108 #define OFFLINE_ASM_GLUE_LABEL(label) label: USE_LABEL(label);
[all...]
/macosx-10.10.1/tcl-105/tk/tk/tests/
H A Dvisual_bb.test64 .menu.file.m add command -label "Quit" -command end
68 .menu.group1.m add command -label "Canvas arcs" -command {runTest arc.tcl}
69 .menu.group1.m add command -label "Beveled borders in text widgets" \
71 .menu.group1.m add command -label "Colormap management" \
73 .menu.group1.m add command -label "Label/button geometry" \
75 .menu.group1.m add command -label "Label/button colors" \
80 .menu.ps.m add command -label "Rectangles and other graphics" \
82 .menu.ps.m add command -label "Text" \
84 .menu.ps.m add command -label "Bitmaps" \
86 .menu.ps.m add command -label "Image
[all...]
/macosx-10.10.1/tcl-105/tk84/tk/tests/
H A Dvisual_bb.test69 .menu.file.m add command -label "Quit" -command end
73 .menu.group1.m add command -label "Canvas arcs" -command {runTest arc.tcl}
74 .menu.group1.m add command -label "Beveled borders in text widgets" \
76 .menu.group1.m add command -label "Colormap management" \
78 .menu.group1.m add command -label "Label/button geometry" \
80 .menu.group1.m add command -label "Label/button colors" \
85 .menu.ps.m add command -label "Rectangles and other graphics" \
87 .menu.ps.m add command -label "Text" \
89 .menu.ps.m add command -label "Bitmaps" \
91 .menu.ps.m add command -label "Image
[all...]
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DDetailsSectionSimpleRow.js26 WebInspector.DetailsSectionSimpleRow = function(label, value) {
65 this.label = label;
72 WebInspector.DetailsSectionSimpleRow.LabelElementStyleClassName = "label";
80 get label()
85 set label(label)
87 this._labelElement.textContent = label;
H A DContextMenu.js32 WebInspector.ContextMenuItem = function(topLevelMenu, type, label, disabled, checked)
35 this._label = label;
68 return { type: "item", id: this._id, label: this._label, enabled: !this._disabled };
72 return { type: "checkbox", id: this._id, label: this._label, checked: !!this._checked, enabled: !this._disabled };
77 WebInspector.ContextSubMenuItem = function(topLevelMenu, label, disabled)
79 WebInspector.ContextMenuItem.call(this, topLevelMenu, "subMenu", label, disabled);
84 appendItem: function(label, handler, disabled)
86 var item = new WebInspector.ContextMenuItem(this._contextMenu, "item", label, disabled);
92 appendSubMenuItem: function(label, disabled)
94 var item = new WebInspector.ContextSubMenuItem(this._contextMenu, label, disable
129 var result = { type: "subMenu", label: this._label, enabled: !this._disabled, subItems: [] }; property in class:_buildDescriptor.result
[all...]
H A DLayerTreeDataGridNode.js107 var label = this._makeOutlet("label", fragment.appendChild(document.createElement("span")));
108 label.className = "label";
110 var nameLabel = this._makeOutlet("nameLabel", label.appendChild(document.createElement("span")));
135 var label = this._outlets.label;
140 label.parentNode.insertBefore(this._outlets.goToButton, label.parentNode.firstChild);
142 label
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/dfg/
H A DDFGOSRExit.cpp66 MacroAssembler::Label label; local
67 label.m_label.m_offset = m_patchableCodeOffset;
68 m_patchableCodeOffset = linkBuffer.offsetOf(label);
H A DDFGInlineCacheWrapperInlines.h39 m_generator.reportSlowPathCall(m_slowPath->label(), m_slowPath->call());
/macosx-10.10.1/OpenSSL098-52/src/crypto/bn/asm/
H A Dbn-586.pl48 &jz(&label("maw_finish"));
53 &jnc(&label("maw_loop"));
119 &jnz(&label("maw_sse2_loop"));
124 &jmp(&label("maw_finish"));
151 &jnz(&label("maw_loop"));
156 &jnz(&label("maw_finish2")); # helps branch prediction
157 &jmp(&label("maw_end"));
173 &jz(&label("maw_end")) if ($i != 7-1);
205 &jz(&label("mw_finish"));
227 &jz(&label("mw_finis
[all...]
/macosx-10.10.1/xnu-2782.1.97/bsd/sys/
H A Dimgact.h71 struct label;
112 struct label *ip_execlabelp; /* label of the executable */
113 struct label *ip_scriptlabelp; /* label of the script */
H A Dposix_sem.h52 struct label;
64 struct label * psem_label;
H A Dposix_shm.h51 struct label;
69 struct label * pshm_label;
/macosx-10.10.1/Security-57031.1.35/Security/include/security_cdsa_client/
H A Dgenkey.cpp59 check(CSSM_GenerateKey(handle(), spec.usage, spec.attributes, spec.label,
69 check(CSSM_GenerateKey(handle(), spec.usage, spec.attributes, spec.label, &compositeRcc(), &key));
78 pubSpec.label, publicKey.makeNewKey(attachment()),
80 privSpec.label, &compositeRcc(), privateKey.makeNewKey(attachment())));
91 pubSpec.usage, pubSpec.attributes, pubSpec.label, &publicKey,
92 privSpec.usage, privSpec.attributes, privSpec.label, &compositeRcc(), &privateKey));
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_cdsa_client/lib/
H A Dgenkey.cpp59 check(CSSM_GenerateKey(handle(), spec.usage, spec.attributes, spec.label,
69 check(CSSM_GenerateKey(handle(), spec.usage, spec.attributes, spec.label, &compositeRcc(), &key));
78 pubSpec.label, publicKey.makeNewKey(attachment()),
80 privSpec.label, &compositeRcc(), privateKey.makeNewKey(attachment())));
91 pubSpec.usage, pubSpec.attributes, pubSpec.label, &publicKey,
92 privSpec.usage, privSpec.attributes, privSpec.label, &compositeRcc(), &privateKey));
/macosx-10.10.1/tcl-105/tcl_ext/snack/snack/demos/python/
H A Decho.py30 s1 = Scale(f, from_=1.0, to=0, resolution=0.01, label="inGain", command=config)
33 s2 = Scale(f, from_=1.0, to=0, resolution=0.01, label="outGain", command=config)
36 s3 = Scale(f, from_=250, to=10, label="Delay1", command=config)
39 s4 = Scale(f, from_=1.0, to=0, resolution=0.01, label="Decay1", command=config)
42 s5 = Scale(f, from_=250, to=10, label="Delay2", command=config)
45 s6 = Scale(f, from_=1.0, to=0, resolution=0.01, label="Decay2", command=config)
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/
H A Dtktimer2.rb10 label = TkLabel.new(:parent=>root, :relief=>:raised, :width=>10) \
16 label.text format("%d.%02d", *(cnt.divmod(100)))
21 timer = TkTimer.new(50, -1, tick).start(0, proc{ label.text('0.00'); 0 })
27 # init_proc : proc{ label.text('0.00'); 0 }
36 command proc{ timer.restart(0, proc{ label.text('0.00'); 0 }) }
/macosx-10.10.1/xnu-2782.1.97/security/
H A Dmac_file.c51 static struct label *
54 struct label *label; local
56 label = mac_labelzone_alloc(MAC_WAITOK);
57 if (label == NULL)
59 MAC_PERFORM(file_label_init, label);
60 return (label);
71 mac_file_label_free(struct label *label) argument
74 MAC_PERFORM(file_label_destroy, label);
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/
H A Dbenchmark.rb54 # * Continuing the previous example, put a label in each report:
136 # additional lines of output. If +label+ parameters are
137 # given, these are used to label these extra lines.
176 print((labels.shift || t.label || "").ljust(label_width), t.format(format))
222 # calculate the required label width.
256 ets = job.list.inject(Tms.new) { |sum,(label,item)|
257 print label.ljust(width)
266 job.list.map { |label,item|
268 print label.ljust(width)
269 Benchmark.measure(label,
[all...]
/macosx-10.10.1/bind9-45.101/bind9/contrib/idn/idnkit-1.0-src/lib/
H A Dres.c97 * label to convert.
110 labellist_t label);
117 static void labellist_destroy(labellist_t label);
118 static idn_result_t labellist_setname(labellist_t label,
121 labellist_getname(labellist_t label);
123 labellist_gettldname(labellist_t label);
124 static idn_result_t labellist_getnamelist(labellist_t label,
127 static void labellist_undo(labellist_t label);
128 static labellist_t labellist_tail(labellist_t label);
129 static labellist_t labellist_previous(labellist_t label);
937 labellist_destroy(labellist_t label) argument
949 labellist_setname(labellist_t label, const unsigned long *name) argument
970 labellist_getname(labellist_t label) argument
975 labellist_gettldname(labellist_t label) argument
989 labellist_getnamelist(labellist_t label, unsigned long *name, size_t name_length) argument
1013 labellist_undo(labellist_t label) argument
1021 labellist_tail(labellist_t label) argument
1032 labellist_previous(labellist_t label) argument
1039 label_localdecodecheck(idn_resconf_t ctx, labellist_t label) argument
1093 label_idndecode(idn_resconf_t ctx, labellist_t label) argument
1168 label_idnencode_ace(idn_resconf_t ctx, labellist_t label) argument
1245 label_localmap(idn_resconf_t ctx, labellist_t label) argument
1304 label_map(idn_resconf_t ctx, labellist_t label) argument
1355 label_normalize(idn_resconf_t ctx, labellist_t label) argument
1407 label_prohcheck(idn_resconf_t ctx, labellist_t label) argument
1433 label_unascheck(idn_resconf_t ctx, labellist_t label) argument
1459 label_bidicheck(idn_resconf_t ctx, labellist_t label) argument
1485 label_asccheck(idn_resconf_t ctx, labellist_t label) argument
1522 label_lencheck_ace(idn_resconf_t ctx, labellist_t label) argument
1544 label_lencheck_nonace(idn_resconf_t ctx, labellist_t label) argument
1599 label_rtcheck(idn_resconf_t ctx, idn_action_t actions, labellist_t label, const unsigned long *original_name) argument
[all...]
/macosx-10.10.1/AppleUSBIrDA-145.2.4/IrDA/Debugging/
H A DIrDADebugging.h105 #define XREQUIRE(expr, label) require(expr, label)
106 #define XREQUIRENOT(expr, label) nrequire(expr,label)

Completed in 133 milliseconds

1234567891011>>